Add main.go
This commit is contained in:
parent
53603524a6
commit
409c1374a9
22
main.go
Normal file
22
main.go
Normal 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
|
||||
}
|
Reference in a new issue