modweb/module.go

10 lines
144 B
Go
Raw Permalink Normal View History

2020-11-11 22:48:11 +00:00
package modweb
type Module interface {
FriendlyName() string
Name() string
2020-11-11 23:51:23 +00:00
Init(mm *ModuleManager)
2020-11-16 20:19:37 +00:00
Hidden() bool
2020-11-17 13:52:33 +00:00
MinAccessLevel() int64
2020-11-11 22:48:11 +00:00
}