My mirror of the Barnard terminal client for Mumble.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

27 řádky
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. }