* [WEB-3065] refactor: replace admin services with service packages * chore: minor updates * chore: error handling
8 lines
229 B
TypeScript
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);
|
|
}
|
|
}
|