mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
9 lines
142 B
JavaScript
9 lines
142 B
JavaScript
import http from '@/lib/http'
|
|
|
|
const analytic = {
|
|
cpu_usage() {
|
|
return http.get('/analytic/cpu')
|
|
}
|
|
}
|
|
|
|
export default analytic
|