blob: 1b67e41877293e9cfac2d26ea5b449f10ed1cb4e [file] [log] [blame]
package main
import (
"os"
"v.io/x/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())
}