Plan stuff. Log stuff.
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
506 B

  1. package repositories
  2. import (
  3. "context"
  4. "github.com/gisle/stufflog/models"
  5. )
  6. type ItemRepository interface {
  7. FindID(ctx context.Context, id string) (*models.Item, error)
  8. List(ctx context.Context) ([]*models.Item, error)
  9. ListUser(ctx context.Context, user models.User) ([]*models.Item, error)
  10. Insert(ctx context.Context, item models.Item) error
  11. Update(ctx context.Context, item models.Item, updates []*models.ItemUpdate) (*models.Item, error)
  12. Remove(ctx context.Context, item models.Item) error
  13. }