This repository has been archived on 2025-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cli/algo/common/common.go
Emmm Monster bf2846b950 Init Project
2020-12-26 03:20:36 +08:00

16 lines
231 B
Go

package common
type Decoder interface {
Decode() error
GetCoverImage() []byte
GetAudioData() []byte
GetAudioExt() string
GetMeta() *Meta
}
type Meta interface {
GetArtists() []string
GetTitle() string
GetAlbum() string
}