mirror of
https://gitee.com/JavaLionLi/plus-ui.git
synced 2026-09-13 07:43:43 +08:00
11 lines
232 B
TypeScript
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'
|
|
});
|
|
}
|