feat: sync auto-start status

This commit is contained in:
wonfen
2025-03-17 09:48:44 +08:00
parent 1e481ed1c1
commit b078560ac1
6 changed files with 30 additions and 2 deletions

View File

@@ -118,6 +118,10 @@ export async function getAutotemProxy() {
}>("get_auto_proxy");
}
export async function getAutoLaunchStatus() {
return invoke<boolean>("get_auto_launch_status");
}
export async function changeClashCore(clashCore: string) {
return invoke<string | null>("change_clash_core", { clashCore });
}