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.

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