Started server

This commit is contained in:
Simon Martens
2026-02-19 15:09:44 +01:00
parent df79656c77
commit 59fb813c85
7 changed files with 115 additions and 94 deletions

11
server/endpoints.go Normal file
View File

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