feat: wip on login endpoint

- added basic REPR pattern
- added basic vert architecture
- implemented basica validation for single test case
This commit is contained in:
Stevan Freeborn
2026-02-01 04:27:06 -06:00
parent 9c38aff40f
commit 8012ecaa73
5 changed files with 68 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace FiscalOS.API.Tests.Infra;
public class TestApi : WebApplicationFactory<Program>
{
protected override void ConfigureWebHost(IWebHostBuilder builder)
{
base.ConfigureWebHost(builder);
builder.ConfigureLogging(static c => c.ClearProviders());
}
}