2024-06-02 00:38:35 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2024-11-05 18:50:15 +08:00
|
|
|
|
using Microsoft.Extensions.CommandLineUtils;
|
2024-06-02 00:38:35 +08:00
|
|
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Abp.Tool
|
|
|
|
|
|
{
|
2024-11-05 18:50:15 +08:00
|
|
|
|
public interface ICommand:ISingletonDependency
|
2024-06-02 00:38:35 +08:00
|
|
|
|
{
|
2024-11-05 18:50:15 +08:00
|
|
|
|
public string Command { get; }
|
|
|
|
|
|
|
2024-11-05 22:12:30 +08:00
|
|
|
|
public string? Description { get; }
|
|
|
|
|
|
void CommandLineApplication(CommandLineApplication application);
|
2024-06-02 00:38:35 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|