Add ui package to serve the UI

This commit is contained in:
Daniel
2018-10-22 17:02:21 +02:00
parent 9cb0641f19
commit 29d0447eec
2 changed files with 171 additions and 0 deletions

17
ui/module.go Normal file
View File

@@ -0,0 +1,17 @@
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
}