mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +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)
|
|
}
|
|
}
|