Files
RenewCMS/domain/gateways/IArticleRepository.go
T

11 lines
150 B
Go

package gateways
import (
. "GohCMS2/domain/article"
)
type IArticleRepository interface {
Get(id int) Article
Create(article Article) Article
}