ln.http/IHttpRouter.cs

10 lines
194 B
C#
Raw Normal View History

2020-01-07 12:23:14 +01:00
using System;
2020-03-03 17:13:31 +01:00
using ln.http.router;
2020-01-07 12:23:14 +01:00
namespace ln.http
{
public interface IHttpRouter
{
2020-03-03 17:13:31 +01:00
HttpResponse Route(HttpRoutingContext routingContext, HttpRequest httpRequest);
2020-01-07 12:23:14 +01:00
}
}