This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2020-04-26 17:39:11 +03:00

12 lines
292 B
Java

package ru.redguy.webinfomod;
import fi.iki.elonen.NanoHTTPD;
import ru.redguy.webinfomod.langs.LangFile;
import java.io.IOException;
public interface IWebPage {
public NanoHTTPD.Response getPage(Config config, LangFile langFile, NanoHTTPD.IHTTPSession session) throws IOException;
}