mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 02:45:49 +02:00
12 lines
218 B
TypeScript
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
|