FastGPT/projects/app/src/api/system.ts
2023-09-24 18:02:09 +08:00

5 lines
196 B
TypeScript

import { GET, POST, PUT } from './request';
import type { InitDateResponse } from '@/pages/api/system/getInitData';
export const getInitData = () => GET<InitDateResponse>('/system/getInitData');