Files
JARVIS/frontend/src/api/system.ts

15 lines
257 B
TypeScript
Raw Normal View History

import api from './index'
export interface SystemStatus {
cpu_percent: number
memory_percent: number
disk_percent: number
timestamp: string
}
export const systemApi = {
getStatus() {
return api.get<SystemStatus>('/api/system/status')
},
}