Files
godeez/internal/deezer/resource.go
T

10 lines
170 B
Go

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