mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 18:31:41 +00:00
feat: add automated production release workflow
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package nebula
|
||||
|
||||
import (
|
||||
"github.com/labstack/echo/v4"
|
||||
"github.com/onsonr/sonr/pkg/nebula/routes"
|
||||
"github.com/onsonr/sonr/pkg/nebula/view"
|
||||
)
|
||||
|
||||
func RouteViews(e *echo.Echo) {
|
||||
e.GET("/home", view.Render(routes.HomeRoute))
|
||||
e.GET("/login", view.Render(routes.LoginRoute))
|
||||
e.GET("/register", view.Render(routes.RegisterRoute))
|
||||
e.GET("/profile", view.Render(routes.ProfileRoute))
|
||||
e.GET("/authorize", view.Render(routes.AuthorizeRoute))
|
||||
}
|
||||
Reference in New Issue
Block a user