mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-05 06:50:41 +00:00
14 lines
406 B
C#
14 lines
406 B
C#
using System.Threading.Tasks;
|
|
using McMaster.Extensions.CommandLineUtils;
|
|
|
|
namespace ZonyLrcTools.Cli.Commands
|
|
{
|
|
[HelpOption("--help|-h", Description = "欢迎使用 ZonyLrcToolsX Command Line Interface。")]
|
|
public abstract class ToolCommandBase
|
|
{
|
|
protected virtual Task<int> OnExecuteAsync(CommandLineApplication app)
|
|
{
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|
|
} |