This commit is contained in:
Matthieu Grieger 2015-04-09 13:23:21 -07:00
parent 73fb4bd82b
commit 26a9d78fac
3 changed files with 8 additions and 5 deletions

View file

@ -10,11 +10,12 @@ package main
import ( import (
"errors" "errors"
"fmt" "fmt"
"github.com/layeh/gumble/gumble"
"os" "os"
"regexp" "regexp"
"strconv" "strconv"
"strings" "strings"
"github.com/layeh/gumble/gumble"
) )
// Called on text message event. Checks the message for a command string, and processes it accordingly if // Called on text message event. Checks the message for a command string, and processes it accordingly if

View file

@ -11,13 +11,14 @@ import (
"crypto/tls" "crypto/tls"
"flag" "flag"
"fmt" "fmt"
"os"
"os/user"
"time"
"github.com/layeh/gopus" "github.com/layeh/gopus"
"github.com/layeh/gumble/gumble" "github.com/layeh/gumble/gumble"
"github.com/layeh/gumble/gumble_ffmpeg" "github.com/layeh/gumble/gumble_ffmpeg"
"github.com/layeh/gumble/gumbleutil" "github.com/layeh/gumble/gumbleutil"
"os"
"os/user"
"time"
) )
// MumbleDJ type declaration // MumbleDJ type declaration

View file

@ -8,9 +8,10 @@
package main package main
import ( import (
"code.google.com/p/gcfg"
"errors" "errors"
"fmt" "fmt"
"code.google.com/p/gcfg"
) )
// Golang struct representation of mumbledj.gcfg file structure for parsing. // Golang struct representation of mumbledj.gcfg file structure for parsing.