view src/goodjava/webserver/Handler.java @ 2136:3ca8f933209d nginx_decoupled

Initial; use ~/.nginx-luan/ as nginx master conf dir instead of trying to detect the system default.
author Violet7
date Mon, 19 Jan 2026 19:47:11 -0800
parents 27efb1fcbcb5
children
line wrap: on
line source

package goodjava.webserver;


public interface Handler {
	public Response handle(Request request);
}