Files
AynaLivePlayer/core/adapter/plugin.go
2023-02-19 04:23:03 -08:00

8 lines
91 B
Go

package adapter
type Plugin interface {
Name() string
Enable() error
Disable() error
}