16 lines
204 B
Go
16 lines
204 B
Go
package radio
|
|
|
|
import (
|
|
"embed"
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
//go:embed templates/*
|
|
var content embed.FS
|
|
|
|
func InitHttpHandlers() {
|
|
prefix := "/radio/"
|
|
http.HandleFunc(fmt.Sprint(prefix, "trains"), trains)
|
|
}
|