mirror of
https://github.com/fatedier/frp.git
synced 2026-07-16 17:29:16 +08:00
7 lines
177 B
TypeScript
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')
|
|
}
|