mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 06:48:08 +02:00
14 lines
237 B
Go
14 lines
237 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/icinga/icingabeat/beater"
|
|
|
|
cmd "github.com/elastic/beats/libbeat/cmd"
|
|
)
|
|
|
|
// Name of this beat
|
|
var Name = "icingabeat"
|
|
|
|
// RootCmd to handle beats cli
|
|
var RootCmd = cmd.GenRootCmd(Name, "", beater.New)
|