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; }