Files
pqs-9100_client/frontend/src/api/system/sntp.ts
caozehui 8c7b164166 微调
2026-06-02 09:25:17 +08:00

10 lines
189 B
TypeScript

import http from '@/api'
export const startSntpService = () => {
return http.post('/sntp/start', {})
}
export const stopSntpService = () => {
return http.post('/sntp/stop', {})
}