mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-08-10 08:53:38 +00:00
13 lines
198 B
Go
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)
|
|
}
|