Revert "Merge branch 'openapi'"

This reverts commit 9a6f0acdf0, reversing
changes made to 08a81e433b.
This commit is contained in:
feige996
2025-09-23 18:01:20 +08:00
parent 459c665ecb
commit 3b14ab942f
15 changed files with 784 additions and 149 deletions

View File

@@ -1,18 +0,0 @@
/* eslint-disable */
// @ts-ignore
import request from '@/http/vue-query';
import { CustomRequestOptions } from '@/http/types';
import * as API from './types';
/** 用户信息 GET /user/info */
export async function infoUsingGet({
options,
}: {
options?: CustomRequestOptions;
}) {
return request<API.UserItem>('/user/info', {
method: 'GET',
...(options || {}),
});
}