Update NCM Decoder

This commit is contained in:
Emmm Monster
2020-12-26 00:49:03 +08:00
parent 98a645a45c
commit db85f60023
2 changed files with 75 additions and 74 deletions

View File

@ -1,11 +1,12 @@
package common
type Decoder interface {
Validate() bool
Decode() error
GetCoverImage() []byte
GetAudioData() []byte
GetAudioExt() string
GetMeta() *Meta
GetMeta() Meta
}
type Meta interface {