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.
|
|
package repositories
import ( "context" "git.aiterp.net/rpdata/api/models" )
type LogRepository interface { Find(ctx context.Context, id string) (*models.Log, error) List(ctx context.Context, filter models.LogFilter) ([]*models.Log, error) Insert(ctx context.Context, log models.Log) (*models.Log, error) Update(ctx context.Context, log models.Log, update models.LogUpdate) (*models.Log, error) Delete(ctx context.Context, log models.Log) error }
|