My mirror of the Barnard terminal client for Mumble.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

barnard.go 410 B

123456789101112131415161718192021
  1. package barnard
  2. import (
  3. "github.com/layeh/barnard/uiterm"
  4. "github.com/layeh/gumble/gumble"
  5. "github.com/layeh/gumble/gumble_openal"
  6. )
  7. type Barnard struct {
  8. Config gumble.Config
  9. Client *gumble.Client
  10. Stream *gumble_openal.Stream
  11. Ui *uiterm.Ui
  12. UiOutput uiterm.Textview
  13. UiInput uiterm.Textbox
  14. UiStatus uiterm.Label
  15. UiTree uiterm.Tree
  16. UiInputStatus uiterm.Label
  17. }