mirror of
https://github.com/fatedier/frp.git
synced 2026-05-03 14:31:40 +08:00
7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
import { http } from './http'
|
|
import type { ServerInfo } from '../types/server'
|
|
|
|
export const getServerInfo = () => {
|
|
return http.get<ServerInfo>('../api/serverinfo')
|
|
}
|