mycroforge/MicroForge.CLI/Features/IFeature.cs
2024-04-21 23:56:27 +02:00

9 lines
164 B
C#

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