mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
import ApiClient from '../ApiClient';
|
|
|
|
class TwilioChannel extends ApiClient {
|
|
constructor() {
|
|
super('channels/twilio_channel', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new TwilioChannel();
|