23 lines
336 B
Go
23 lines
336 B
Go
|
package daemon
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var configDir string
|
||
|
|
||
|
var daemonCmd = &cobra.Command{
|
||
|
Use: "daemon",
|
||
|
Short: "Read continuously data from all enabled sensors",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
|
||
|
},
|
||
|
}
|
||
|
|
||
|
func InitCmd(cmd *cobra.Command, cnf string) {
|
||
|
configDir = cnf
|
||
|
|
||
|
cmd.AddCommand(daemonCmd)
|
||
|
|
||
|
}
|