openreplay/frontend/app/services/BaseService.ts
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

13 lines
270 B
TypeScript

import APIClient from 'App/api_client';
export default class BaseService {
client: APIClient;
constructor(client?: APIClient) {
this.client = client || new APIClient();
}
initClient(client?: APIClient) {
this.client = client || new APIClient();
}
}