9 lines
188 B
C#
9 lines
188 B
C#
using Microsoft.Extensions.CommandLineUtils;
|
|
|
|
namespace cli.Model
|
|
{
|
|
public interface ICommander
|
|
{
|
|
CommandLineApplication Integrate(CommandLineApplication rootApp);
|
|
}
|
|
} |