owl-blogs/app/repository/interfaces.go

25 lines
641 B
Go

package repository
import (
"owl-blogs/domain/model"
"time"
)
type EntryRepository interface {
Create(entry model.Entry, publishedAt *time.Time, metaData model.EntryMetaData) error
Update(entry model.Entry) error
Delete(entry model.Entry) error
FindById(id string) (model.Entry, error)
FindAll(types *[]string) ([]model.Entry, error)
}
type BinaryRepository interface {
Create(name string, data []byte) (*model.BinaryFile, error)
FindById(id string) (*model.BinaryFile, error)
}
type AuthorRepository interface {
Create(name string, passwordHash string) (*model.Author, error)
FindByName(name string) (*model.Author, error)
}