X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fdolda%2Fjsvc%2Ftest%2FBootstrap.java;fp=src%2Fdolda%2Fjsvc%2Ftest%2FBootstrap.java;h=0000000000000000000000000000000000000000;hb=69f1e62ee8f7c8d26eb89db56dc59895f8be8bfe;hp=ad4c38f3aeec6a3ed653822e033b8b0fae14c081;hpb=60ef28853e4aca8b227f533c4b95c03de6574e02;p=jsvc.git diff --git a/src/dolda/jsvc/test/Bootstrap.java b/src/dolda/jsvc/test/Bootstrap.java deleted file mode 100644 index ad4c38f..0000000 --- a/src/dolda/jsvc/test/Bootstrap.java +++ /dev/null @@ -1,15 +0,0 @@ -package dolda.jsvc.test; - -import dolda.jsvc.*; -import dolda.jsvc.util.*; - -public class Bootstrap { - public static Responder responder() { - Multiplexer root = new Multiplexer(); - root.file("test", new TestResponder()); - root.file("", new StaticContent(Bootstrap.class, "static/index.html", false, "text/html")); - root.file("css", new StaticContent(Bootstrap.class, "static/test.css", false, "text/css")); - root.dir("foo", new StaticContent(Bootstrap.class, "static/foo", true, "text/plain; charset=utf-8")); - return(Misc.stdroot(root)); - } -}