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
554 B

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