primitives/source/handy_http_primitives/handler.d

8 lines
217 B
D
Raw Normal View History

2024-08-15 23:21:48 +00:00
module handy_http_primitives.handler;
import handy_http_primitives.request;
import handy_http_primitives.response;
interface HttpRequestHandler {
void handle(in HttpRequest request, ref HttpResponse response);
}