This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues/pull-requests.
mumbledj/interfaces/playlist.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
}