2019-06-13 19:25:32 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2019-06-15 12:25:45 +00:00
|
|
|
var configPath string
|
2019-06-13 19:25:32 +00:00
|
|
|
|
|
|
|
var daemonCmd = &cobra.Command{
|
|
|
|
Use: "daemon",
|
|
|
|
Short: "Read continuously data from all enabled sensors",
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2019-06-15 12:25:45 +00:00
|
|
|
// read configuration
|
|
|
|
// cnf, err := config.Read(configPath)
|
|
|
|
// if err != nil {
|
|
|
|
// log.Fatalln(err)
|
|
|
|
// }
|
2019-06-13 19:25:32 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-06-15 12:25:45 +00:00
|
|
|
func InitCmd(cmd *cobra.Command, cnfPath string) {
|
|
|
|
configPath = cnfPath
|
2019-06-13 19:25:32 +00:00
|
|
|
|
|
|
|
cmd.AddCommand(daemonCmd)
|
|
|
|
|
|
|
|
}
|