We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c60be0 commit 78cebeaCopy full SHA for 78cebea
1 file changed
src/main/java/Main.java
@@ -20,11 +20,11 @@ public static void main(String[] args) {
20
port(Integer.valueOf(System.getenv("PORT")));
21
staticFileLocation("/public");
22
23
- get("/hello", (req, res) -> "Hello World");
+ get("/hello", (req, res) -> "Hello World - - SHALTON O TESTADOR!");
24
25
get("/", (request, response) -> {
26
Map<String, Object> attributes = new HashMap<>();
27
- attributes.put("message", "Hello World! - SHALTON O TESTADOR!");
+ attributes.put("message", "Hello World!");
28
29
return new ModelAndView(attributes, "index.ftl");
30
}, new FreeMarkerEngine());
0 commit comments