{
public static void main(String[] args) throws Exception {
Properties p = new Properties();
p.put("delay", "60");
p.put("verbose", "true");
Daemon d = new Daemon(p);
FunctionServlet servlet = new FunctionServlet();
servlet.setHandler(ServerTest1.createHandler());
ServletContainer f = new ServletContainer("/", servlet);
d.add(f);
}