package main import ( "os" "github.com/bluemedora/bplogagent/commands" ) func main() { rootCmd := commands.NewRootCmd() err := rootCmd.Execute() if err != nil { os.Exit(1) } }