My mirror of the Barnard terminal client for Mumble.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 line
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. }