mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-18 00:09:32 +00:00
b015132527
Configurable websocket hearbeat. Nit fixes.
15 lines
364 B
C#
15 lines
364 B
C#
using MTSC.Common.Http;
|
|
using MTSC.Common.Http.RoutingModules;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MTSC.UnitTests.RoutingModules
|
|
{
|
|
public class ExceptionThrowingModule : HttpRouteBase
|
|
{
|
|
public override Task<HttpResponse> HandleRequest(HttpRequest request)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|