Files
frp/web/frps/src/api/server.ts

7 lines
171 B
TypeScript

import { http } from './http'
import type { ServerInfo } from '../types/server'
export const getServerInfo = () => {
return http.get<ServerInfo>('../api/serverinfo')
}