You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
331 B
Go
22 lines
331 B
Go
package common
|
|
|
|
import "context"
|
|
|
|
type Decoder interface {
|
|
Validate() error
|
|
Decode() error
|
|
GetAudioData() []byte
|
|
GetAudioExt() string
|
|
GetMeta() Meta
|
|
}
|
|
|
|
type CoverImageGetter interface {
|
|
GetCoverImage(ctx context.Context) ([]byte, error)
|
|
}
|
|
|
|
type Meta interface {
|
|
GetArtists() []string
|
|
GetTitle() string
|
|
GetAlbum() string
|
|
}
|