| 123456789101112131415 |
- import { invoke } from "@tauri-apps/api/core"
- import { message } from "@tauri-apps/plugin-dialog"
- import { initI18n, t } from "./i18n"
- export async function installCli(): Promise<void> {
- await initI18n()
- try {
- const path = await invoke<string>("install_cli")
- await message(t("desktop.cli.installed.message", { path }), { title: t("desktop.cli.installed.title") })
- } catch (e) {
- await message(t("desktop.cli.failed.message", { error: String(e) }), { title: t("desktop.cli.failed.title") })
- }
- }
|