mycroforge/MycroForge.CLI/Features/IFeature.cs

9 lines
164 B
C#

namespace MycroForge.CLI.Features;
public interface IFeature
{
public string Name { get; }
public Task ExecuteAsync(ProjectContext context);
}