22 lines
590 B
Go
22 lines
590 B
Go
package main
|
|
|
|
import (
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/lorenzhohermuth/portfolio/internal/handler"
|
|
"github.com/lorenzhohermuth/portfolio/internal/mdparser"
|
|
)
|
|
|
|
func main() {
|
|
app := echo.New()
|
|
index := 0
|
|
|
|
projects := mdparser.GetProjects()
|
|
h := handler.Homehandler{index, projects}
|
|
app.GET("/", h.HandleUserShow)
|
|
app.POST("/carousel/next", handler.HtmxCarouselHandler{&index, 1, projects}.HandlerCarouselUpdate)
|
|
app.POST("/carousel/previous", handler.HtmxCarouselHandler{&index, -1, projects}.HandlerCarouselUpdate)
|
|
app.Static("/static", "assets")
|
|
|
|
app.Start(":3030")
|
|
}
|