aboutsummaryrefslogtreecommitdiff
path: root/src/Commands/TestDisplayCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Commands/TestDisplayCommand.cs')
-rw-r--r--src/Commands/TestDisplayCommand.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Commands/TestDisplayCommand.cs b/src/Commands/TestDisplayCommand.cs
new file mode 100644
index 0000000..c716ada
--- /dev/null
+++ b/src/Commands/TestDisplayCommand.cs
@@ -0,0 +1,22 @@
+using System.Threading.Tasks;
+
+using Typin.Console;
+using Typin.Attributes;
+
+using VNLib.Tools.Build.Executor.Model;
+using VNLib.Tools.Build.Executor.Constants;
+
+namespace VNLib.Tools.Build.Executor.Commands
+{
+ [Command("display", Description = "Test command for debugging")]
+ public sealed class TestDisplayCommand(BuildPipeline pipeline, ConfigManager bm) : BaseCommand(pipeline, bm)
+ {
+ public override IFeedManager[] Feeds => [];
+
+ public override async ValueTask ExecStepsAsync(IConsole console)
+ {
+ console.Output.WriteLine("Press any key to exit...");
+ await console.Input.ReadLineAsync(console.GetCancellationToken());
+ }
+ }
+} \ No newline at end of file