8 lines
191 B
C#
8 lines
191 B
C#
namespace MycroForge.Core;
|
|
|
|
public abstract class RootCommand : System.CommandLine.RootCommand
|
|
{
|
|
protected RootCommand(string description = "") : base(description)
|
|
{
|
|
}
|
|
} |