virtual-vxlan/main.go
2025-01-07 22:21:50 -06:00

25 lines
519 B
Go

package main
// Basic application info.
const (
serviceName = "virtual-vxlan"
serviceDisplayName = "Virtual VXLAN"
serviceVendor = "com.mrgeckosmedia"
serviceDescription = "Virtual VXLAN using TUN interfaces"
serviceVersion = "0.1.5"
defaultConfigFile = "config.yaml"
)
// The application start.
func main() {
// Parse the flags.
ctx := ParseFlags()
// Configure logging.
flags.Log.Apply()
// Run the command and exit.
err := ctx.Run()
ctx.FatalIfErrorf(err)
}