You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
478 B
15 lines
478 B
package repositories
|
|
|
|
import (
|
|
"context"
|
|
"git.aiterp.net/stufflog/server/models"
|
|
)
|
|
|
|
type ItemRepository interface {
|
|
Find(ctx context.Context, id string) (*models.Item, error)
|
|
List(ctx context.Context, filter models.ItemFilter) ([]*models.Item, error)
|
|
Insert(ctx context.Context, item models.Item) (*models.Item, error)
|
|
Save(ctx context.Context, item models.Item) error
|
|
Delete(ctx context.Context, item models.Item) error
|
|
GetTags(ctx context.Context) ([]string, error)
|
|
}
|