Files
showbridge-go/internal/api/no_webui.go
2026-08-04 14:57:45 -05:00

13 lines
198 B
Go

//go:build !showbridge_webui
package api
import (
"net/http"
)
func handleWebUI(w http.ResponseWriter, req *http.Request) {
http.Error(w, "Web UI is not enabled", http.StatusNotImplemented)
}