24 lines
404 B
Go
24 lines
404 B
Go
|
package sensor
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
|
||
|
"git.cryptic.systems/fh-trier/go-flucky/pkg/sensor"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var rmSensorCmd = &cobra.Command{
|
||
|
Use: "rm",
|
||
|
Short: "Remove Sensor",
|
||
|
Args: cobra.ExactArgs(1),
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
if err := sensor.Remove(args[0], configDir); err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
sensorCmd.AddCommand(rmSensorCmd)
|
||
|
}
|