mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-13 05:28:16 +08:00
14 lines
207 B
Go
14 lines
207 B
Go
package controller
|
|
|
|
type Plugin interface {
|
|
Name() string
|
|
Enable() error
|
|
Disable() error
|
|
}
|
|
|
|
type IPluginController interface {
|
|
LoadPlugin(plugin Plugin)
|
|
LoadPlugins(plugins ...Plugin)
|
|
ClosePlugins()
|
|
}
|