Tauri 子命令
某些 CLI 应用程序具有其他接口作为子命令。例如,CLI 具有 和 。您可以使用数组定义其他嵌套接口:
git
git branch
git commit
git push
subcommands
{
"cli": {
...
"subcommands": {
"branch": {
"args": []
},
"push": {
"args": []
}
}
}
}
其配置与根应用程序配置相同,具有 、 、 等。description
longDescription
args