My mirror of the Barnard terminal client for Mumble.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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
- }
|