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