Files
pqs-9100_client/frontend/src/api/system/sntp.ts

10 lines
189 B
TypeScript
Raw Normal View History

2026-06-02 09:25:17 +08:00
import http from '@/api'
export const startSntpService = () => {
return http.post('/sntp/start', {})
}
export const stopSntpService = () => {
return http.post('/sntp/stop', {})
}