Files
lenz-web/server/endpoints.go
Simon Martens 5551dd7626 cmt move
2026-02-19 15:11:32 +01:00

12 lines
224 B
Go

package server
import (
"github.com/Theodor-Springmann-Stiftung/lenz-web/templates"
"github.com/labstack/echo/v5"
)
// INFO: Static files here:
func MapStatic(e *echo.Echo) {
e.StaticFS("/public", templates.PublicFS)
}