Skip to content

Commit

Permalink
feat: add get method with basic info
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoPereyraDiaz committed Sep 21, 2023
1 parent ced2270 commit 95440fc
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ IEventReceptor eventReceptor
_eventReceptor = eventReceptor;
}

/// <summary>
/// Get Controller information
/// </summary>
/// <returns></returns>
[HttpGet]
public IActionResult Get()
{
return Ok("Green Arrow Events Receptor");
}

/// <summary>
/// Receive raw body of events
/// </summary>
Expand Down

0 comments on commit 95440fc

Please sign in to comment.