This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/main.go
Matthieu Grieger 409c1374a9 Add main.go
2014-12-08 21:45:22 -08:00

23 lines
375 B
Go

/*
* 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
}