Moved radio/trains to regio43

This commit is contained in:
2025-05-23 14:40:41 +02:00
parent d82fd0003b
commit 55b1073a7e
5 changed files with 10 additions and 12 deletions

13
regio43/init.go Normal file
View File

@@ -0,0 +1,13 @@
package regio43
import (
"embed"
"net/http"
)
//go:embed templates/*
var content embed.FS
func InitHttpHandlers() {
http.HandleFunc("/regio43/", trains)
}