mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
- **refactor: move marketing pages to** - **feat: add role select input**
17 lines
309 B
Go
17 lines
309 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
|
|
"github.com/onsonr/sonr/pkg/nebula/routes"
|
|
)
|
|
|
|
func RegisterGatewayAPI(e *echo.Echo) {
|
|
}
|
|
|
|
func RegisterGatewayViews(e *echo.Echo) {
|
|
e.GET("/", routes.HomeRoute)
|
|
e.GET("/login", routes.LoginModalRoute)
|
|
e.GET("/register", routes.RegisterModalRoute)
|
|
}
|