feature: Console Replay Simulator

This commit is contained in:
voltsrage
2026-06-19 15:22:14 +08:00
parent 835311dffc
commit abc781c9c0
50 changed files with 11158 additions and 612 deletions
+10
View File
@@ -0,0 +1,10 @@
using System.CommandLine;
var rootCommand = new RootCommand("VigilCare Clinical Replay Simulator");
rootCommand.AddCommand(ReplayCommand.Create());
rootCommand.AddCommand(ReplayAllCommand.Create());
rootCommand.AddCommand(ValidateCommand.Create());
rootCommand.AddCommand(DryRunCommand.Create());
return await rootCommand.InvokeAsync(args);