| 214 | } |
| 215 | |
| 216 | type BridgeValues struct { |
| 217 | API map[string]Protocol |
| 218 | IRC map[string]Protocol |
| 219 | Mattermost map[string]Protocol |
| 220 | Matrix map[string]Protocol |
| 221 | Slack map[string]Protocol |
| 222 | SlackLegacy map[string]Protocol |
| 223 | Steam map[string]Protocol |
| 224 | Gitter map[string]Protocol |
| 225 | XMPP map[string]Protocol |
| 226 | Discord map[string]Protocol |
| 227 | Telegram map[string]Protocol |
| 228 | Rocketchat map[string]Protocol |
| 229 | SSHChat map[string]Protocol |
| 230 | WhatsApp map[string]Protocol // TODO is this struct used? Search for "SlackLegacy" for example didn't return any results |
| 231 | Zulip map[string]Protocol |
| 232 | Keybase map[string]Protocol |
| 233 | Mumble map[string]Protocol |
| 234 | General Protocol |
| 235 | Tengo Tengo |
| 236 | Gateway []Gateway |
| 237 | SameChannelGateway []SameChannelGateway |
| 238 | } |
| 239 | |
| 240 | type Config interface { |
| 241 | Viper() *viper.Viper |
nothing calls this directly
no outgoing calls
no test coverage detected