go fmt
This commit is contained in:
parent
73fb4bd82b
commit
26a9d78fac
|
@ -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
|
||||||
|
|
7
main.go
7
main.go
|
@ -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
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Reference in a new issue