Files
sonr/cmd/motr/main.go
T

15 lines
269 B
Go
Raw Normal View History

2024-09-26 15:58:49 -04:00
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)
}
}