2026-04-05 17:08:42 +07:00
|
|
|
// 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';
|
2025-12-10 08:41:30 +07:00
|
|
|
|
|
|
|
|
export interface BackofficeApiResponse<T> {
|
|
|
|
|
data: T;
|
|
|
|
|
message: string;
|
|
|
|
|
}
|