From 500bf8696ac8c0cf8e910cb1453665ea9c67a8e3 Mon Sep 17 00:00:00 2001 From: MichaelOultram Date: Sat, 15 Aug 2015 18:05:53 +0100 Subject: [PATCH] Removed web interface as it is unfinshed --- main.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/main.go b/main.go index b918974..69bd62f 100644 --- a/main.go +++ b/main.go @@ -174,8 +174,6 @@ var dj = mumbledj{ cache: NewSongCache(), } -var web *WebServer - // main primarily performs startup tasks. Grabs and parses commandline // args, sets up the gumble client and its listeners, and then connects to the server. func main() { @@ -251,10 +249,5 @@ func main() { Verbose("Testing is enabled") Test(password, address, port, strings.Split(accesstokens, " ")) } - - if isNil(web) { - Verbose("WEB IS NIL") - } - <-dj.keepAlive }