Files
frp/web/frps/src/api/server.ts
2026-07-07 02:00:44 +08:00

7 lines
177 B
TypeScript

import { http } from './http'
import type { ServerInfo } from '../types/server'
export const getServerInfo = () => {
return http.getV2<ServerInfo>('../api/v2/system/info')
}