16fe912fbd
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
import ApiClient from '../ApiClient';
|
|
|
|
class WebChannel extends ApiClient {
|
|
constructor() {
|
|
super('widget/inboxes');
|
|
}
|
|
}
|
|
|
|
export default new WebChannel();
|