Files
imphnen-frontend-service/libs/service/src/api/backoffice.ts
T

9 lines
277 B
TypeScript
Raw Normal View History

// All API calls now go through the main `api` instance (api.imphnen.dev).
// This file re-exports `api` as `backofficeApi` for backward compatibility.
export { api as backofficeApi } from './index';
export interface BackofficeApiResponse<T> {
data: T;
message: string;
}