* fix: initial services package setup * fix: services packages updates * fix: services changes * fix: merge conflicts * chore: file structuring * fix: import fixes
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
import { API_BASE_URL } from "@plane/constants";
|
|
import { APIService } from "./api.service";
|
|
|
|
export abstract class LiveService extends APIService {
|
|
constructor(BASE_URL?: string) {
|
|
super(BASE_URL || API_BASE_URL);
|
|
}
|
|
}
|