17 lines
327 B
Go
17 lines
327 B
Go
|
/*
|
||
|
* MumbleDJ
|
||
|
* By Matthieu Grieger
|
||
|
* interfaces/playlist.go
|
||
|
* Copyright (c) 2016 Matthieu Grieger (MIT License)
|
||
|
*/
|
||
|
|
||
|
package interfaces
|
||
|
|
||
|
// Playlist is an interface of methods that must be implemented by playlists.
|
||
|
type Playlist interface {
|
||
|
GetID() string
|
||
|
GetTitle() string
|
||
|
GetSubmitter() string
|
||
|
GetService() string
|
||
|
}
|