mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-27 22:51:10 -04:00
12 lines
205 B
Go
12 lines
205 B
Go
package plugin
|
|
|
|
import "github.com/bitmagnet-io/bitmagnet/internal/ref"
|
|
|
|
type Instance interface {
|
|
Ref() ref.Ref
|
|
Enabled() bool
|
|
DependsOn() []ref.Ref
|
|
RequiredBy() []ref.Ref
|
|
LocalizedContentProvider
|
|
}
|