Do not use /bmx for our custom endpoint (#115)

Follow-up for https://github.com/gesellix/Bose-SoundTouch/pull/114
This commit is contained in:
Tobias Gesellchen
2026-03-16 23:36:36 +01:00
committed by GitHub
parent 8d95e170f6
commit ad5344b309
5 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -797,7 +797,7 @@ func customBMXHandler(w http.ResponseWriter, r *http.Request) {
func main() {
r := chi.NewRouter()
r.Get("/bmx/custom/endpoint", customBMXHandler)
r.Get("/custom/endpoint", customBMXHandler)
http.ListenAndServe(":8000", r)
}
```