Add OpenCLI integration to Spectre.Console.Cli

This commit is contained in:
Patrik Svensson
2025-09-30 08:59:13 +02:00
committed by Patrik Svensson
parent 3a70fbec75
commit b551bbd244
20 changed files with 549 additions and 27 deletions

View File

@@ -0,0 +1,9 @@
namespace Spectre.Console.Cli;
/// <summary>
/// Represents a built-in command.
/// Used as a marker interface.
/// </summary>
internal interface IBuiltInCommand : ICommand
{
}