Remove last remnance of old ws mux

pull/3/head
Stein Ivar Berghei 2022-11-19 15:02:15 +01:00
parent 0411652b5b
commit ad9dfa44ca
1 changed files with 0 additions and 7 deletions

7
bot.go
View File

@ -3,7 +3,6 @@ package main
import (
"context"
"log"
"net/http"
"os"
"os/signal"
"sync"
@ -41,11 +40,6 @@ func init() {
if err != nil {
log.Fatal(err)
}
app.mux = http.NewServeMux()
go http.ListenAndServe(":8826", app.mux)
log.Println("bot.go done.")
}
@ -66,7 +60,6 @@ type App struct {
playlist *Playlist
plm *sync.RWMutex
hubbub *gohubbub.Client
mux *http.ServeMux
}
func main() {