12 lines
250 B
C#
12 lines
250 B
C#
namespace Automancer.Common;
|
|
|
|
using Spectre.Console.Cli;
|
|
|
|
public interface ICommandModule
|
|
{
|
|
public string Name => string.Empty;
|
|
public string Description => string.Empty;
|
|
void Configure(IConfigurator config, CommandRegistry registry);
|
|
|
|
}
|