2018-11-20 21:55:06 +00:00
|
|
|
package sensor
|
|
|
|
|
|
|
|
import (
|
2019-09-01 10:27:06 +00:00
|
|
|
"github.com/Masterminds/semver"
|
2018-11-20 21:55:06 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2019-09-01 10:27:06 +00:00
|
|
|
var (
|
|
|
|
configFile *string
|
|
|
|
|
|
|
|
version *semver.Version
|
|
|
|
)
|
2018-11-20 21:55:06 +00:00
|
|
|
|
|
|
|
var sensorCmd = &cobra.Command{
|
|
|
|
Use: "sensor",
|
|
|
|
Short: "Manage Sensors",
|
|
|
|
}
|
|
|
|
|
2019-02-22 12:08:58 +00:00
|
|
|
// InitCmd da
|
2019-09-01 10:27:06 +00:00
|
|
|
func InitCmd(cmd *cobra.Command, cnfFile *string, sversion *semver.Version) {
|
2019-06-16 11:00:50 +00:00
|
|
|
configFile = cnfFile
|
2019-09-01 10:27:06 +00:00
|
|
|
version = sversion
|
2018-11-20 21:55:06 +00:00
|
|
|
|
|
|
|
cmd.AddCommand(sensorCmd)
|
|
|
|
|
|
|
|
}
|