mirror of
https://github.com/safing/portmaster
synced 2025-04-22 20:09:09 +00:00
20 lines
429 B
Go
20 lines
429 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/safing/portbase/info"
|
|
"github.com/safing/portbase/run"
|
|
|
|
// include packages here
|
|
_ "github.com/safing/portbase/modules/subsystems"
|
|
_ "github.com/safing/portmaster/core"
|
|
_ "github.com/safing/portmaster/firewall"
|
|
_ "github.com/safing/portmaster/nameserver"
|
|
_ "github.com/safing/portmaster/ui"
|
|
)
|
|
|
|
func main() {
|
|
info.Set("Portmaster", "0.3.9", "AGPLv3", true)
|
|
os.Exit(run.Run())
|
|
}
|