Tauri 子命令
2024-01-26 09:59 更新
某些 CLI 应用程序具有其他接口作为子命令。例如,CLI 具有 和 。您可以使用数组定义其他嵌套接口:
git
git branch
git commit
git push
subcommands
{
"cli": {
...
"subcommands": {
"branch": {
"args": []
},
"push": {
"args": []
}
}
}
}
其配置与根应用程序配置相同,具有 、 、 等。description
longDescription
args
以上内容是否对您有帮助:
更多建议: