Files
CliFx/CliFx.Tests/TestCommands/NonAnnotatedCommand.cs
2019-10-30 18:37:32 +02:00

11 lines
289 B
C#

using System.Threading;
using System.Threading.Tasks;
using CliFx.Services;
namespace CliFx.Tests.TestCommands
{
public class NonAnnotatedCommand : ICommand
{
public Task ExecuteAsync(IConsole console, CancellationToken cancellationToken) => Task.CompletedTask;
}
}