com.harium.web.model.WebModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
A web framework over sparkjava
package com.harium.web.model;
import spark.Request;
import java.util.Map;
public interface WebModule {
void init();
void buildModel(Request request, Map model);
}