feat: add transcodedSuffix to Subsonic API responses

This commit is contained in:
Deluan 2020-03-16 12:56:15 -04:00 committed by Deluan Quintão
parent 45180115a6
commit 39993810b3
12 changed files with 136 additions and 61 deletions

View file

@ -11,5 +11,6 @@ type Transcoding struct {
type Transcodings []Transcoding
type TranscodingRepository interface {
Get(id string) (*Transcoding, error)
Put(*Transcoding) error
}