Move portmaster binary to cmds/portmaster-core

This commit is contained in:
Patrick Pacher
2020-07-17 12:13:13 +02:00
parent 3428035dd4
commit cef2a4e9be
7 changed files with 21 additions and 14 deletions

View File

@@ -0,0 +1,20 @@
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.4.15", "AGPLv3", true)
os.Exit(run.Run())
}