()
| 3 | import { Nginx } from '../interface/nginx'; |
| 4 | |
| 5 | export const getNginx = () => { |
| 6 | return http.get<File.File>(`/openresty`); |
| 7 | }; |
| 8 | |
| 9 | export const getNginxConfigByScope = (req: Nginx.NginxScopeReq) => { |
| 10 | return http.post<Nginx.NginxParam[]>(`/openresty/scope`, req); |