mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-21 21:44:52 +00:00
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
import ApiClient from '../ApiClient';
|
|
|
|
class WebChannel extends ApiClient {
|
|
constructor() {
|
|
super('widget/inboxes');
|
|
}
|
|
}
|
|
|
|
export default new WebChannel();
|