mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 23:08:08 +02:00
17 lines
210 B
Go
17 lines
210 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/elastic/beats/packetbeat/cmd"
|
|
)
|
|
|
|
var Name = "packetbeat"
|
|
|
|
// Setups and Runs Packetbeat
|
|
func main() {
|
|
if err := cmd.RootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|