mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
13 lines
195 B
Go
13 lines
195 B
Go
package network
|
|
|
|
import (
|
|
"github.com/Safing/portbase/modules"
|
|
)
|
|
|
|
func init() {
|
|
modules.Register("network", prep, start, nil, "database")
|
|
}
|
|
|
|
func start() error {
|
|
return registerAsDatabase()
|
|
}
|