delphi.market/server/router/router.go

19 lines
410 B
Go
Raw Normal View History

package router
import (
"github.com/labstack/echo/v4"
"git.ekzyis.com/ekzyis/delphi.market/server/router/context"
"git.ekzyis.com/ekzyis/delphi.market/server/router/handler"
)
2024-07-09 20:41:29 +00:00
type Context = context.Context
2024-07-09 20:41:29 +00:00
func Init(e *echo.Echo, sc Context) {
// e.Use(middleware.Session(sc))
2024-07-09 20:41:29 +00:00
e.GET("/", handler.HandleIndex(sc))
2024-07-10 07:14:06 +00:00
e.GET("/about", handler.HandleAbout(sc))
2024-07-10 07:45:15 +00:00
e.GET("/login", handler.HandleLogin(sc))
}