mycroforge/MycroForge.Core/RootCommand.cs

8 lines
191 B
C#

namespace MycroForge.Core;
public abstract class RootCommand : System.CommandLine.RootCommand
{
protected RootCommand(string description = "") : base(description)
{
}
}