Files
godeez/internal/deezer/resource.go
T

11 lines
195 B
Go

package deezer
type Resource interface {
GetTitle() string
GetType() string
GetSongs() []*Song
SetSongs(songs []*Song)
GetOutputDir(outputDir string) string
Unmarshal(data []byte) error
}