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