mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-13 05:28:16 +08:00
14 lines
288 B
Go
14 lines
288 B
Go
package controller
|
|
|
|
var Instance IController = nil
|
|
|
|
type IController interface {
|
|
LiveRooms() ILiveRoomController
|
|
PlayControl() IPlayController
|
|
Playlists() IPlaylistController
|
|
Provider() IProviderController
|
|
Plugin() IPluginController
|
|
LoadPlugins(plugins ...Plugin)
|
|
CloseAndSave()
|
|
}
|