Rename variable

This commit is contained in:
Unrud 2022-02-22 22:19:37 +01:00
parent 190b2763bd
commit 238ef14843
2 changed files with 4 additions and 4 deletions

View file

@ -219,7 +219,7 @@ func main() {
}
port := addr.Port
mux := http.NewServeMux()
mux.Handle("/", http.FileServer(http.FS(webdata)))
mux.Handle("/", http.FileServer(http.FS(WebdataFS)))
mux.Handle("/ws", websocket.Handler(func(ws *websocket.Conn) {
var message string
challenge := <-authenticationChallenges