This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues/pull-requests.
mumbledj/main.go

23 lines
376 B
Go
Raw Normal View History

2014-12-09 06:45:22 +01:00
/*
* 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 {
2014-12-10 00:11:41 +01:00
serverAddress string
2014-12-09 06:45:22 +01:00
serverPort int
username string
password string
}