public class rpc { public static Object[] application(java.util.HashMap env) { String rpc_out = uwsgi.rpc("", "reverse", (String) env.get("REQUEST_URI")); java.util.HashMap headers = new java.util.HashMap(); headers.put("Content-Type", "text/html"); Object[] response = { 200, headers, "

" + rpc_out + "

"}; return response; } }