22 lines
410 B
Go
22 lines
410 B
Go
package barnard
|
|
|
|
import (
|
|
"github.com/layeh/barnard/uiterm"
|
|
"github.com/layeh/gumble/gumble"
|
|
"github.com/layeh/gumble/gumble_openal"
|
|
)
|
|
|
|
type Barnard struct {
|
|
Config gumble.Config
|
|
Client *gumble.Client
|
|
|
|
Stream *gumble_openal.Stream
|
|
|
|
Ui *uiterm.Ui
|
|
UiOutput uiterm.Textview
|
|
UiInput uiterm.Textbox
|
|
UiStatus uiterm.Label
|
|
UiTree uiterm.Tree
|
|
UiInputStatus uiterm.Label
|
|
}
|