Add main.go

This commit is contained in:
Matthieu Grieger 2014-12-08 21:45:22 -08:00
parent 53603524a6
commit 409c1374a9

22
main.go Normal file
View file

@ -0,0 +1,22 @@
/*
* MumbleDJ
* By Matthieu Grieger
* main.go
* Copyright (c) 2014 Matthieu Grieger (MIT License)
*/
package main
import (
"github.com/layeh/gumble/gumble"
"github.com/layeh/gumble/gumble_ffmpeg"
"github.com/layeh/gumble/gumbleutil"
)
// MumbleDJ type declaration
type MumbleDJ struct {
serverAddress string
serverPort int
username string
password string
}