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.

27 wiersze
441 B

  1. package main
  2. import (
  3. "crypto/tls"
  4. "layeh.com/barnard/uiterm"
  5. "layeh.com/gumble/gumble"
  6. "layeh.com/gumble/gumbleopenal"
  7. )
  8. type Barnard struct {
  9. Config *gumble.Config
  10. Client *gumble.Client
  11. Address string
  12. TLSConfig tls.Config
  13. Stream *gumbleopenal.Stream
  14. Ui *uiterm.Ui
  15. UiOutput uiterm.Textview
  16. UiInput uiterm.Textbox
  17. UiStatus uiterm.Label
  18. UiTree uiterm.Tree
  19. UiInputStatus uiterm.Label
  20. }