(status, body)
| 93 | return sendRes(200, `You have connected with the RDS Proxy! <br /><br /> ${queryResult}`); |
| 94 | }; |
| 95 | const sendRes = (status, body) => { |
| 96 | var response = { |
| 97 | statusCode: status, |
| 98 | headers: { |
| 99 | "Content-Type": "text/html" |
| 100 | }, |
| 101 | body: body |
| 102 | }; |
| 103 | return response; |
| 104 | }; |