10 lines
170 B
Go
10 lines
170 B
Go
package deezer
|
|
|
|
type Resource interface {
|
|
GetTitle() string
|
|
GetType() string
|
|
GetSongs() []*Song
|
|
GetOutputDir(outputDir string) string
|
|
Unmarshal(data []byte) error
|
|
}
|