mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
Co-authored-by: Nithin David Thomas <[email protected]> Co-authored-by: Sojan Jose <[email protected]>
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();
|