sonr/cmd/motr/main.go

10 lines
149 B
Go
Raw Normal View History

2024-09-26 15:58:49 -04:00
package main
func main() {
rootCmd := NewRootCmd()
2024-09-26 15:58:49 -04:00
rootCmd.AddCommand(NewProxyCmd())
if err := rootCmd.Execute(); err != nil {
panic(err)
}
}