removed not existing Greeting class

This commit is contained in:
Alfredo Oliviero 2024-01-30 17:57:42 +01:00
parent 94dc7eb020
commit e80474da7e
1 changed files with 4 additions and 2 deletions

View File

@ -39,8 +39,10 @@ public class HelloWorld {
@Produces("application/json;charset=UTF-8")
@Consumes("application/json;charset=UTF-8")
public String create(String json) {
Greeting g = new Greeting();
return g.create(json);
//Greeting g = new Greeting();
//return g.create(json);
return "{\"text\":\"hi\"}";
}
@PUT