feat: complete legacy UI and playout parity migration

This commit is contained in:
2026-07-15 13:11:38 +09:00
parent f14800656b
commit 6e0c275fdd
108 changed files with 43738 additions and 560 deletions

View File

@@ -0,0 +1,21 @@
#nullable enable
namespace MBN_STOCK_WEBVIEW.DbWriteSmoke;
internal static class Program
{
private static async Task<int> Main(string[] args)
{
if (OwnedManualSmokeResidueRecovery.IsRequested(args))
{
return await OwnedManualSmokeResidueRecovery.RunAsync(args, Console.Out)
.ConfigureAwait(false);
}
return await DevelopmentDatabaseWriteSmokeApp.RunAsync(
args,
ProductionDevelopmentDatabaseSmokePlan.Create,
Console.Out)
.ConfigureAwait(false);
}
}