ln.http/IHttpRouter.cs

9 lines
150 B
C#
Raw Normal View History

2020-01-07 12:23:14 +01:00
using System;
namespace ln.http
{
public interface IHttpRouter
{
HttpResponse Route(string path, HttpRequest httpRequest);
}
}