blob: ddf4714f0e50bb4ed0071b413db650f732e9c446 [file] [log] [blame]
package main
import (
"os"
"v.io/lib/cmdline"
)
func main() {
rootCmd := cmdline.Command{
Name: "deviced",
Short: "Veyron device manager setup",
Long: `
deviced can be used to launch, configure, or manage the device manager.
`,
Children: []*cmdline.Command{cmdInstall, cmdUninstall, cmdStart, cmdStop, cmdProfile},
Run: runServer,
}
os.Exit(rootCmd.Main())
}