mirror of
https://github.com/safing/portmaster
synced 2025-09-01 10:09:11 +00:00
19 lines
263 B
Go
19 lines
263 B
Go
package firewall
|
|
|
|
import (
|
|
"github.com/Safing/portbase/modules"
|
|
|
|
_ "github.com/Safing/portmaster/network"
|
|
)
|
|
|
|
func init() {
|
|
modules.Register("firewall", nil, start, stop, "network")
|
|
}
|
|
|
|
func start() error {
|
|
return registerAsDatabase()
|
|
}
|
|
|
|
func stop() error {
|
|
|
|
}
|