mycroforge/MycroForge.CLI/Commands/MycroForge.cs
2024-04-22 20:25:20 +02:00

15 lines
433 B
C#

using System.CommandLine;
using MycroForge.CLI.Commands.Interfaces;
namespace MycroForge.CLI.Commands;
public partial class MycroForge : RootCommand
{
public override string Name => "m4g";
public MycroForge(IEnumerable<ISubCommandOf<MycroForge>> commands) : base("The MycroForge CLI tool.")
{
foreach (var subCommandOf in commands.Cast<Command>())
AddCommand(subCommandOf);
}
}