Files
sonr/pkg/workers/routes/gateway.go
T

18 lines
405 B
Go
Raw Normal View History

package routes
import (
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/pkg/nebula/components/authentication"
"github.com/onsonr/sonr/pkg/nebula/components/marketing"
)
func RegisterGatewayAPI(e *echo.Echo) {
}
func RegisterGatewayViews(e *echo.Echo) {
e.GET("/", marketing.HomeRoute)
e.GET("/login", authentication.LoginModalRoute)
e.GET("/register", authentication.RegisterModalRoute)
}