6 lines
150 B
Java
6 lines
150 B
Java
package org.dynmap.web;
|
|
|
|
|
|
public interface HttpHandler {
|
|
void handle(String path, HttpRequest request, HttpResponse response) throws Exception;
|
|
}
|