12 lines
278 B
Go
12 lines
278 B
Go
|
package repository
|
||
|
|
||
|
import "owl-blogs/domain/model"
|
||
|
|
||
|
type EntryRepository interface {
|
||
|
Create(entry model.Entry) error
|
||
|
Update(entry model.Entry) error
|
||
|
Delete(entry model.Entry) error
|
||
|
FindById(id string) (model.Entry, error)
|
||
|
FindAll(types *[]string) ([]model.Entry, error)
|
||
|
}
|