Blame view

src/main/java/com/peony/netty/web/Route.java 190 Bytes
f475e312   辛毅   create
1
2
3
4
5
6
7
8
9
10
11
package com.peony.netty.web;

import com.peony.netty.http.Request;
import com.peony.netty.http.Response;


public interface Route {

    Object handle(Request request, Response response);

}