Add history endpoint and do some cleanup

This commit is contained in:
2024-02-02 12:42:27 -05:00
parent 76d3f2b9c4
commit 1f2f0d56d9
11 changed files with 80 additions and 12 deletions

View File

@@ -25,6 +25,9 @@ public static class Program
app.MapControllers();
var database = app.Services.GetRequiredService<Database>();
database.EnsureDatabase();
app.Run();
}
}