Skip to content

Commit

Permalink
gethealth call
Browse files Browse the repository at this point in the history
  • Loading branch information
JeapfromtheLake committed May 18, 2021
1 parent 74a8853 commit 486ce1d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Controllers/PersonController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,11 @@ public async Task<ActionResult<PersonServiceModel>> GetPersonById(string id)
PersonServiceModel responseModel = await flurlResponse.GetJsonAsync<PersonServiceModel>();
return Ok(responseModel);
}

[HttpGet("health")]
public ActionResult Health()
{
return Ok();
}
}
}

0 comments on commit 486ce1d

Please sign in to comment.