summaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/wayfiresocket/Request.java
blob: 8b7efc926f086c113d9a421f91e5b682c3d85917 (plain)
1
2
3
4
5
6
7
package moe.nea.wayfiresocket;

public interface Request<ResponseType> {
	Class<ResponseType> getResponseType();

	String getMethodName();
}