14 lines
161 B
Go
14 lines
161 B
Go
package regio43
|
|
|
|
import (
|
|
"embed"
|
|
"net/http"
|
|
)
|
|
|
|
//go:embed templates/*
|
|
var content embed.FS
|
|
|
|
func InitHttpHandlers() {
|
|
http.HandleFunc("/regio43/", trains)
|
|
}
|