Blame view

Yi.Vben5.Vue3/apps/web-antd/src/api/service/index.ts 254 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
  import type { ServerInfo } from './model';
  
  import { requestClient } from '#/api/request';
  
  /**
   * 获取服务器信息
   * @returns 服务器信息
   */
  export function getServerInfo() {
    return requestClient.get<ServerInfo>('/monitor-server/info');
  }