11 lines
202 B
Plaintext
11 lines
202 B
Plaintext
import { http } from '@/utils/http/axios';
|
|
|
|
/**
|
|
* @description: 获取服务监控信息
|
|
*/
|
|
export function getServerInfo() {
|
|
return http.request({
|
|
url: '/server/info',
|
|
method: 'GET'
|
|
});
|
|
} |