VoiceCapabilityProvider is an optional interface for channels that want to explicitly declare their ASR/TTS support.
| 10 | // VoiceCapabilityProvider is an optional interface for channels that want to |
| 11 | // explicitly declare their ASR/TTS support. |
| 12 | type VoiceCapabilityProvider interface { |
| 13 | VoiceCapabilities() VoiceCapabilities |
| 14 | } |
| 15 | |
| 16 | // Deprecated: Channels should implement VoiceCapabilityProvider instead. |
| 17 | // To be removed once all existing capable channels conform to the interface. |
no outgoing calls
no test coverage detected