mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 18:31:41 +00:00
15 lines
328 B
Go
15 lines
328 B
Go
package front
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/labstack/echo/v4"
|
||
|
|
"github.com/onsonr/sonr/internal/dwn/front/views"
|
||
|
|
)
|
||
|
|
|
||
|
|
func RegisterViews(e *echo.Echo) {
|
||
|
|
e.GET("/", views.HomeView)
|
||
|
|
e.GET("/login", views.LoginView)
|
||
|
|
e.GET("/register", views.RegisterView)
|
||
|
|
e.GET("/profile", views.ProfileView)
|
||
|
|
e.GET("/authorize", views.AuthorizeView)
|
||
|
|
}
|