moonstream/probes/cmd/probes/main.go

16 wiersze
173 B
Go

package main
import (
"fmt"
"os"
)
func main() {
command := CreateRootCommand()
err := command.Execute()
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
}