Files
sonr/pkg/nebula/router.go
T

15 lines
322 B
Go
Raw Normal View History

2024-09-21 21:42:51 -04:00
package nebula
2024-09-18 02:22:17 -04:00
import (
"github.com/labstack/echo/v4"
2024-09-21 21:42:51 -04:00
"github.com/onsonr/sonr/pkg/nebula/views"
2024-09-18 02:22:17 -04:00
)
2024-09-21 21:42:51 -04:00
func RouteViews(e *echo.Echo) {
e.GET("/home", views.HomeView)
2024-09-18 02:22:17 -04:00
e.GET("/login", views.LoginView)
e.GET("/register", views.RegisterView)
e.GET("/profile", views.ProfileView)
e.GET("/authorize", views.AuthorizeView)
}