- package barnard
-
- import (
- "crypto/tls"
-
- "github.com/layeh/barnard/uiterm"
- "github.com/layeh/gumble/gumble"
- "github.com/layeh/gumble/gumbleopenal"
- )
-
- type Barnard struct {
- Config *gumble.Config
- Client *gumble.Client
-
- Address string
- TLSConfig tls.Config
-
- Stream *gumbleopenal.Stream
-
- Ui *uiterm.Ui
- UiOutput uiterm.Textview
- UiInput uiterm.Textbox
- UiStatus uiterm.Label
- UiTree uiterm.Tree
- UiInputStatus uiterm.Label
- }
|