mycroforge/MycroForge.CLI/Commands/MycroForge.Add.cs
mdnapo 02a82589ae - Refactored init & features
- Extended documentation
2024-07-14 22:27:32 +02:00

17 lines
464 B
C#

using System.CommandLine;
using MycroForge.Core.Contract;
namespace MycroForge.CLI.Commands;
public partial class MycroForge
{
public partial class Add : Command, ISubCommandOf<MycroForge>
{
public Add(IEnumerable<ISubCommandOf<Add>> commands) :
base("add", "Add features to the project")
{
foreach (var command in commands.Cast<Command>())
AddCommand(command);
}
}
}