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 }