Skip to content

Commit

Permalink
Remove unused endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jbi89 committed May 13, 2023
1 parent 5d9e7b5 commit 04691ca
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Controllers/TodoApiController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,5 @@ public async Task<IActionResult> GetTodoItems()
var items = await _context.ScanAsync<TodoDynamo>(default).GetRemainingAsync();
return Ok(items);
}

[HttpGet]
public async Task<IActionResult> GetHealth()
{
return Ok();
}
}
}

0 comments on commit 04691ca

Please sign in to comment.