mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 13:07:09 +00:00
15 lines
269 B
Go
15 lines
269 B
Go
package main
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func main() {
|
|
rootCmd := &cobra.Command{
|
|
Use: "motr",
|
|
Short: "Manage a local DWN instance for the Sonr blockchain",
|
|
}
|
|
rootCmd.AddCommand(NewProxyCmd())
|
|
if err := rootCmd.Execute(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|