mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 04:32:50 +00:00
5 lines
196 B
TypeScript
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');
|