Created
June 12, 2019 17:41
-
-
Save recursivecodes/e8f6663f555c3c124e1d07741c344940 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Get("/") | |
| @Produces(MediaType.APPLICATION_JSON) | |
| public HttpResponse<Object> index() { | |
| Map<String, Object> meta = new HashMap<>(); | |
| meta.put("configValue", this.testConfigValue); | |
| return HttpResponse.ok(meta); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment