mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-02-24 06:19:07 +08:00
18 lines
298 B
JavaScript
18 lines
298 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询缓存详细
|
|
export function getCache() {
|
|
return request({
|
|
url: '/infra/redis/get-monitor-info',
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// TODO
|
|
export function getKeyList() {
|
|
return request({
|
|
url: '/infra/redis/get-key-list',
|
|
method: 'get'
|
|
})
|
|
}
|