fix: create default transcodings on existing installations

This commit is contained in:
Deluan 2020-03-17 16:49:37 -04:00
parent bc1f767123
commit 811703ab60
3 changed files with 13 additions and 4 deletions

View file

@ -12,6 +12,7 @@ type Transcodings []Transcoding
type TranscodingRepository interface {
Get(id string) (*Transcoding, error)
CountAll(...QueryOptions) (int64, error)
Put(*Transcoding) error
FindByFormat(format string) (*Transcoding, error)
}