mirror of
https://github.com/safing/portmaster
synced 2025-09-02 02:29:12 +00:00
20 lines
293 B
Go
20 lines
293 B
Go
package ships
|
|
|
|
import (
|
|
"github.com/safing/portbase/modules"
|
|
"github.com/safing/portmaster/spn/conf"
|
|
)
|
|
|
|
var module *modules.Module
|
|
|
|
func init() {
|
|
module = modules.Register("ships", start, nil, nil, "cabin")
|
|
}
|
|
|
|
func start() error {
|
|
if conf.PublicHub() {
|
|
initPageInput()
|
|
}
|
|
|
|
return nil
|
|
}
|