Initial http-server work.
This commit is contained in:
parent
711341ec47
commit
bf0edea7e2
4 changed files with 163 additions and 40 deletions
7
src/main/java/org/dynmap/web/HttpHandler.java
Normal file
7
src/main/java/org/dynmap/web/HttpHandler.java
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package org.dynmap.web;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public interface HttpHandler {
|
||||
void handle(String path, HttpRequest request, HttpResponse response) throws IOException;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue