package org.wikiwebserver.handler.http.interfaces;

import org.wikiwebserver.handler.http.HTTPHandler;

public interface SessionFinder {
    public Object findSession(HTTPHandler conn) throws Exception;
}

