From 409c1374a934fe5f64c875fffc5cf978c08cde40 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Mon, 8 Dec 2014 21:45:22 -0800 Subject: [PATCH] Add main.go --- main.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..8e19f17 --- /dev/null +++ b/main.go @@ -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 +}