My mirror of the Barnard terminal client for Mumble.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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
- }
|