plus-ui/src/api/monitor/cache/index.ts
2026-06-01 12:01:08 +08:00

11 lines
232 B
TypeScript

import type { R } from '@/api/types';
import request from '@/api/request';
import type { CacheVO } from './types';
export function getCache() {
return request<R<CacheVO>>({
url: '/monitor/cache',
method: 'get'
});
}