13 lines
282 B
TypeScript
13 lines
282 B
TypeScript
import type { AxiosPromise } from '@/utils/api-types';
|
|
import request from '@/utils/request';
|
|
import type { CacheVO } from './types';
|
|
|
|
// 查询缓存详细
|
|
export function getCache(): AxiosPromise<CacheVO> {
|
|
return request({
|
|
url: '/monitor/cache',
|
|
method: 'get'
|
|
});
|
|
}
|
|
|