bb-plane-fork/packages/services/src/intake/intake.service.ts
Prateek Shourya 200be0ac7f
[WEB-3065] refactor: replace admin services with service packages (#6342)
* [WEB-3065] refactor: replace admin services with service packages

* chore: minor updates

* chore: error handling
2025-01-07 19:07:47 +05:30

8 lines
229 B
TypeScript

import { API_BASE_URL } from "@plane/constants";
import { APIService } from "../api.service";
export default class IntakeService extends APIService {
constructor(BASE_URL?: string) {
super(BASE_URL || API_BASE_URL);
}
}