fixes, refacts

This commit is contained in:
2018-08-05 04:16:21 +02:00
parent 1f6aaac1fe
commit 0c69d5abbc
19 changed files with 193 additions and 85 deletions

9
cli/Model/ICommander.cs Normal file
View File

@ -0,0 +1,9 @@
using Microsoft.Extensions.CommandLineUtils;
namespace cli.Model
{
public interface ICommander
{
CommandLineApplication Integrate(CommandLineApplication rootApp);
}
}