stufflog graphql server
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.

13 lines
437 B

  1. package repositories
  2. import (
  3. "context"
  4. "git.aiterp.net/stufflog/server/models"
  5. )
  6. type ProjectStatusRepository interface {
  7. Find(ctx context.Context, projectID string, id string) (*models.ProjectStatus, error)
  8. List(ctx context.Context, filter models.ProjectStatusFilter) ([]*models.ProjectStatus, error)
  9. Save(ctx context.Context, status models.ProjectStatus) error
  10. Delete(ctx context.Context, status models.ProjectStatus) error
  11. }