mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +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)
|
|
}
|
|
}
|