mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-30 18:47:51 +00:00
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class AgentBotsAPI extends ApiClient {
|
|
constructor() {
|
|
super('agent_bots', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new AgentBotsAPI();
|