Eliot

Results 1 issues of Eliot

When I run the code below. ``` @Rest @Path("/test") public class SimpleApp { public static void main(String[] args){ new MicroserverApp(()->"").run(); } @GET public String myEndPoint(){ return "hello world!"; } }...

bug