ant-design-blazor/site/AntDesign.Docs.Build.CLI/IAppCommand.cs

11 lines
213 B
C#
Raw Normal View History

using Microsoft.Extensions.CommandLineUtils;
namespace AntDesign.Docs.Build.CLI
{
public interface IAppCommand
{
string Name { get; }
void Execute(CommandLineApplication command);
}
}