We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 870d434 + a763872 commit c661425Copy full SHA for c661425
1 file changed
CallbackHandler/Endpoints/CallbackEndpoints.cs
@@ -2,8 +2,6 @@
2
using Microsoft.AspNetCore.Builder;
3
using Microsoft.AspNetCore.Http;
4
using Microsoft.AspNetCore.Routing;
5
-using SimpleResults;
6
-using System;
7
using Shared.Extensions;
8
using Shared.Middleware;
9
@@ -21,7 +19,7 @@ public static IEndpointRouteBuilder MapCallbackEndpoints(this IEndpointRouteBuil
21
19
group.MapPost("/", Handlers.CallbackHandlers.RecordCallback)
22
20
.WithName("RecordCallback")
23
.WithSummary("Records a deposit callback")
24
- .WithStandardProduces<CallbackResponse, ErrorResponse>(); ;
+ .WithStandardProduces<CallbackResponse, ErrorResponse>();
25
26
group.MapGet("/{callbackId:guid}", Handlers.CallbackHandlers.GetCallback)
27
.WithName("GetCallback")
0 commit comments