Files
sonr/workers/routes/proxy.go
T

18 lines
339 B
Go
Raw Normal View History

package routes
import (
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/nebula/components/auth"
"github.com/onsonr/sonr/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)
}