9 lines
164 B
C#
9 lines
164 B
C#
namespace MycroForge.CLI.Features;
|
|
|
|
|
|
public interface IFeature
|
|
{
|
|
public string Name { get; }
|
|
public Task ExecuteAsync(ProjectContext context);
|
|
}
|