mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
15 lines
308 B
Go
15 lines
308 B
Go
package nebula
|
|||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/labstack/echo/v4"
|
||
|
|
"github.com/onsonr/sonr/pkg/nebula/pages"
|
||
|
|
)
|
||
|
|
|
||
|
|
func RegisterHandlers(e *echo.Echo) {
|
||
|
|
e.GET("/home", pages.Home)
|
||
|
|
e.GET("/login", pages.Login)
|
||
|
|
e.GET("/register", pages.Register)
|
||
|
|
e.GET("/profile", pages.Profile)
|
||
|
|
e.GET("/authorize", pages.Authorize)
|
||
|
|
}
|