2023-09-10 17:39:34 +02:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
|
2023-10-04 13:36:54 +02:00
|
|
|
"git.ekzyis.com/ekzyis/delphi.market/server/router/context"
|
2023-09-10 17:39:34 +02:00
|
|
|
"git.ekzyis.com/ekzyis/delphi.market/server/router/handler"
|
|
|
|
)
|
|
|
|
|
2024-07-09 22:41:29 +02:00
|
|
|
type Context = context.Context
|
2023-10-04 13:36:54 +02:00
|
|
|
|
2024-07-09 22:41:29 +02:00
|
|
|
func Init(e *echo.Echo, sc Context) {
|
2024-07-12 04:59:32 +02:00
|
|
|
// e.Use(middleware.Session(sc))
|
2023-10-04 13:36:54 +02:00
|
|
|
|
2024-07-09 22:41:29 +02:00
|
|
|
e.GET("/", handler.HandleIndex(sc))
|
2024-07-10 09:14:06 +02:00
|
|
|
e.GET("/about", handler.HandleAbout(sc))
|
2024-07-10 09:45:15 +02:00
|
|
|
e.GET("/login", handler.HandleLogin(sc))
|
2023-09-10 17:39:34 +02:00
|
|
|
}
|