comparison src/luan/modules/http/NotFound.java @ 1347:643cf1c37723

move webserver to lib and bug fixes
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 25 Feb 2019 13:02:33 -0700
parents 794ddcfbee20
children 1d31c1f3ea30
comparison
equal deleted inserted replaced
1346:efd1c6380f2c 1347:643cf1c37723
1 package luan.modules.http; 1 package luan.modules.http;
2 2
3 import luan.webserver.Request; 3 import luan.lib.webserver.Request;
4 import luan.webserver.Response; 4 import luan.lib.webserver.Response;
5 import luan.webserver.Handler; 5 import luan.lib.webserver.Handler;
6 6
7 7
8 public class NotFound implements Handler { 8 public class NotFound implements Handler {
9 private final LuanHandler luanHandler; 9 private final LuanHandler luanHandler;
10 10