safing-portmaster/ui/module.go
2018-10-22 17:02:21 +02:00

17 lines
210 B
Go

package ui
import (
"github.com/Safing/portbase/modules"
)
func init() {
modules.Register("ui", prep, start, stop, "database", "api")
}
func prep() error {
return nil
}
func stop() error {
return nil
}