mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
10 lines
160 B
JavaScript
10 lines
160 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class WebHooks extends ApiClient {
|
|
constructor() {
|
|
super('account/webhooks');
|
|
}
|
|
}
|
|
|
|
export default new WebHooks();
|