Files
sonr/pkg/workers/routes/gateway.go
T
Prad NukalaandGitHub d8cb2cbbf6 feature/1126 implement pkl config (#1161)
- **refactor: move marketing pages to**
- **feat: add role select input**
2024-11-06 13:32:51 -05:00

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)
}