GraphQL API and utilities for the rpdata project
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

package repositories
import (
"context"
"git.aiterp.net/rpdata/api/models"
)
// FileRepository is an interface for database operations relating to file metadata.
type FileRepository interface {
Find(ctx context.Context, id string) (*models.File, error)
List(ctx context.Context, filter models.FileFilter) ([]*models.File, error)
Insert(ctx context.Context, file models.File) (*models.File, error)
Update(ctx context.Context, file models.File, update models.FileUpdate) (*models.File, error)
Delete(ctx context.Context, file models.File) error
}