From 26a9d78fac4c6b41e4f211005b2099d63217eb5f Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Thu, 9 Apr 2015 13:23:21 -0700 Subject: [PATCH] go fmt --- commands.go | 3 ++- main.go | 7 ++++--- parseconfig.go | 3 ++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/commands.go b/commands.go index f1bf524..eeacf36 100644 --- a/commands.go +++ b/commands.go @@ -10,11 +10,12 @@ package main import ( "errors" "fmt" - "github.com/layeh/gumble/gumble" "os" "regexp" "strconv" "strings" + + "github.com/layeh/gumble/gumble" ) // Called on text message event. Checks the message for a command string, and processes it accordingly if diff --git a/main.go b/main.go index 1f22e81..308f00b 100644 --- a/main.go +++ b/main.go @@ -11,13 +11,14 @@ import ( "crypto/tls" "flag" "fmt" + "os" + "os/user" + "time" + "github.com/layeh/gopus" "github.com/layeh/gumble/gumble" "github.com/layeh/gumble/gumble_ffmpeg" "github.com/layeh/gumble/gumbleutil" - "os" - "os/user" - "time" ) // MumbleDJ type declaration diff --git a/parseconfig.go b/parseconfig.go index ee7f1d6..e352cd5 100644 --- a/parseconfig.go +++ b/parseconfig.go @@ -8,9 +8,10 @@ package main import ( - "code.google.com/p/gcfg" "errors" "fmt" + + "code.google.com/p/gcfg" ) // Golang struct representation of mumbledj.gcfg file structure for parsing.