Init Project

This commit is contained in:
Emmm Monster
2020-12-25 22:39:50 +08:00
commit bf2846b950
6 changed files with 143 additions and 0 deletions

15
algo/common/common.go Normal file
View File

@ -0,0 +1,15 @@
package common
type Decoder interface {
Decode() error
GetCoverImage() []byte
GetAudioData() []byte
GetAudioExt() string
GetMeta() *Meta
}
type Meta interface {
GetArtists() []string
GetTitle() string
GetAlbum() string
}