appservice.go 259 B

1234567891011121314
  1. package config
  2. type appservice struct {
  3. Address string `yaml:"address"`
  4. Hostname string `yaml:"hostname"`
  5. Port uint16 `yaml:"port"`
  6. ID string `yaml:"id"`
  7. Bot bot `yaml:"bot"`
  8. ASToken string `yaml:"as_token"`
  9. HSToken string `yaml:"hs_token"`
  10. }