mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
- **feat(macaroon): add and to macaroon genesis** - **refactor: move schema definitions to dedicated file** - **feat: remove Session model** - **refactor: move session middleware to internal package**
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)
|
|
}
|
|
}
|