mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-04-08 17:15:05 +02:00
14 lines
148 B
Go
14 lines
148 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/icinga/icingabeat/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.RootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|