using Microsoft.AspNetCore.Mvc;
namespace Web.Controllers;
[Route("test")]
public class TestController : ControllerBase
{
private readonly ILogger<TestController> logger;
public TestController(ILogger<TestController> logger)
{
this.logger = logger;
}
[HttpPost("test/{id}")]
public ActionResult Test(string id)
{
this.logger.LogInformation("Hello {Id}", id);
return this.Ok("Format me");
}
}
dotnet dotnet-format
the file is formatted as follows:dotnet-format
will not format wrongly the file.flomindanza, ElmarXCV, danflomin, lin-stephen, MattKotsenas and 3 more
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4