feat: add some commands

This commit is contained in:
GyDi 2022-04-24 21:03:47 +08:00 committed by GitHub
parent 34e941c8cb
commit 2d0b63c29d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions
src/services

@ -105,3 +105,21 @@ export async function openLogsDir() {
Notice.error(err?.message || err.toString(), 1500)
);
}
/// service mode
export async function startService() {
return invoke<void>("start_service");
}
export async function checkService() {
return invoke<any>("check_service");
}
export async function installService() {
return invoke<void>("install_service");
}
export async function uninstallService() {
return invoke<void>("uninstall_service");
}

@ -130,6 +130,7 @@ export namespace CmdType {
traffic_graph?: boolean;
enable_tun_mode?: boolean;
enable_auto_launch?: boolean;
enable_service_mode?: boolean;
enable_silent_start?: boolean;
enable_system_proxy?: boolean;
enable_proxy_guard?: boolean;