blob: f0631db103890f9b1224c13775cf6d838b143377 [file] [log] [blame]
package main
import "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},
Run: runServer,
}
rootCmd.Main()
}