mirror of
https://github.com/Theodor-Springmann-Stiftung/lenz-web.git
synced 2026-03-21 05:45:32 +00:00
12 lines
225 B
Go
12 lines
225 B
Go
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)
|
|
}
|