mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
10 lines
149 B
Go
10 lines
149 B
Go
package main
|
|
|
|
func main() {
|
|
rootCmd := NewRootCmd()
|
|
rootCmd.AddCommand(NewProxyCmd())
|
|
if err := rootCmd.Execute(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|