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" )
// ChannelRepository is an interface for a database using channels.
type ChannelRepository interface { Find(ctx context.Context, name string) (*models.Channel, error) List(ctx context.Context, filter models.ChannelFilter) ([]*models.Channel, error) Insert(ctx context.Context, channel models.Channel) (*models.Channel, error) Update(ctx context.Context, channel models.Channel, update models.ChannelUpdate) (*models.Channel, error) Remove(ctx context.Context, channel models.Channel) error }
|