PKGBUILD/cmd/humidity/humidity.go
2018-12-07 20:42:30 +01:00

21 lines
282 B
Go

package humidity
import (
"github.com/spf13/cobra"
)
var configDir string
var humidityCmd = &cobra.Command{
Use: "humidity",
Short: "Read humidity from sensor",
}
// Execute a
func InitCmd(cmd *cobra.Command, cnf string) {
configDir = cnf
cmd.AddCommand(humidityCmd)
}