added template for generating request

This commit is contained in:
Aditya Mayukh Som
2024-03-21 17:53:46 +05:30
parent 095c0d6109
commit f47f3a5d74

View File

@ -29,4 +29,9 @@ public class Main {
final String requestBody = "{{body}}";\n
''';
final String kTemplateRequestCreation = '''
HttpResponse<JsonNode> response = Unirest
.{{method}}(requestURL)\n
''';
}