10 lines
189 B
TypeScript
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', {})
|
||
|
|
}
|