io.github.kamilszewc.simplerouter.MethodHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-java-http-router Show documentation
Show all versions of simple-java-http-router Show documentation
Simple Java router for building http services
package io.github.kamilszewc.simplerouter;
public interface MethodHandler {
Object handler(RoutingContext routingContext);
}