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

18 lines
347 B
Go
Raw Normal View History

package routes
import (
"github.com/labstack/echo/v4"
2024-10-11 16:47:52 -04:00
"github.com/onsonr/sonr/pkg/nebula/components/auth"
"github.com/onsonr/sonr/pkg/nebula/components/home"
)
func RegisterProxyAPI(e *echo.Echo) {
}
func RegisterProxyViews(e *echo.Echo) {
e.GET("/", home.Route)
e.GET("/login", auth.LoginRoute)
e.GET("/register", auth.RegisterRoute)
}