15 lines
271 B
C#
15 lines
271 B
C#
namespace Automancer.Common;
|
|
|
|
using Spectre.Console.Cli;
|
|
|
|
public interface ICommandModule
|
|
{
|
|
|
|
void Configure(IConfigurator config);
|
|
|
|
}
|
|
|
|
public interface ICommandModuleWithRegistry : ICommandModule
|
|
{
|
|
void Configure(IConfigurator config, CommandRegistry registry);
|
|
} |