mirror of
https://github.com/cadmium-im/zirconium-go.git
synced 2024-11-23 19:02:20 +00:00
18 lines
229 B
Go
18 lines
229 B
Go
|
package core
|
||
|
|
||
|
const (
|
||
|
ModuleInterfaceName = "Module"
|
||
|
)
|
||
|
|
||
|
type Module interface {
|
||
|
Initialize(moduleAPI *ModuleManager)
|
||
|
Name() string
|
||
|
Version() string
|
||
|
}
|
||
|
|
||
|
type ModuleRef struct {
|
||
|
F func() Module
|
||
|
}
|
||
|
|
||
|
type ModuleFunc func() Module
|