diff 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
line wrap: on
line diff
--- a/src/luan/modules/http/NotFound.java	Mon Feb 25 12:29:33 2019 -0700
+++ b/src/luan/modules/http/NotFound.java	Mon Feb 25 13:02:33 2019 -0700
@@ -1,8 +1,8 @@
 package luan.modules.http;
 
-import luan.webserver.Request;
-import luan.webserver.Response;
-import luan.webserver.Handler;
+import luan.lib.webserver.Request;
+import luan.lib.webserver.Response;
+import luan.lib.webserver.Handler;
 
 
 public class NotFound implements Handler {