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