Skip to content

Commit

Permalink
Ran dotnet-format on codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-taylor-rjj committed Nov 20, 2024
1 parent 640f0b7 commit f638188
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions OwaspHeaders.Core.Example/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ public class HomeController(ILogger<HomeController> logger) : ControllerBase
{
private readonly ILogger<HomeController> _logger = logger;

[HttpGet(Name = "/")]
public IEnumerable<string> Get()
{
return HttpContext.Response.Headers.Select(h => h.ToString()).ToArray();
}
[HttpGet(Name = "/")]
public IEnumerable<string> Get()
{
return HttpContext.Response.Headers.Select(h => h.ToString()).ToArray();
}
}

0 comments on commit f638188

Please sign in to comment.