mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 14:58:08 +02:00
17 lines
254 B
Go
17 lines
254 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/elastic/beats/libbeat/cmd"
|
|
"github.com/elastic/beats/libbeat/mock"
|
|
)
|
|
|
|
var RootCmd = cmd.GenRootCmd(mock.Name, mock.Version, mock.New)
|
|
|
|
func main() {
|
|
if err := RootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|