nginx-ui/frontend/src/api/index.ts

12 lines
218 B
TypeScript

import http from '@/lib/http'
const install = {
get_lock() {
return http.get('/install')
},
install_nginx_ui(data: any) {
return http.post('/install', data)
}
}
export default install