mirror of
https://github.com/safing/portmaster
synced 2025-09-01 10:09:11 +00:00
13 lines
184 B
Go
13 lines
184 B
Go
package ui
|
|
|
|
import (
|
|
"github.com/safing/portbase/modules"
|
|
)
|
|
|
|
func init() {
|
|
modules.Register("ui", prep, nil, nil, "updates", "api")
|
|
}
|
|
|
|
func prep() error {
|
|
return registerRoutes()
|
|
}
|