mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-13 21:48:30 +08:00
8 lines
89 B
Go
8 lines
89 B
Go
package model
|
|
|
|
type Plugin interface {
|
|
Name() string
|
|
Enable() error
|
|
Disable() error
|
|
}
|