mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
17 lines
210 B
Go
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
|
|
}
|