mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-14 14:08:22 +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()
|
|
}
|