Skip to content

Commit

Permalink
Added ping endpoint to chargingservice
Browse files Browse the repository at this point in the history
  • Loading branch information
tschissler committed Oct 3, 2023
1 parent cb784cb commit 68824ce
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ChargingService/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,11 @@
})
.WithName("ApplyChargingSettings");

app.MapPost("/ping", string () =>
{
return "I am alive";
})
.WithName("Ping");


app.Run();

0 comments on commit 68824ce

Please sign in to comment.