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.

14 lines
401 B

4 years ago
  1. package repositories
  2. import (
  3. "context"
  4. "github.com/gisle/stufflog/models"
  5. )
  6. // UserRepository is a repository for database operations for users.
  7. type UserRepository interface {
  8. FindID(ctx context.Context, id string) (*models.User, error)
  9. List(ctx context.Context) ([]*models.User, error)
  10. Save(ctx context.Context, user models.User) error
  11. Remove(ctx context.Context, user models.User) error
  12. }