import { invoke } from "@tauri-apps/api/core"; import type { OmoLocalFileData } from "@/types/omo"; export const omoApi = { readLocalFile: (): Promise => invoke("read_omo_local_file"), getCurrentOmoProviderId: (): Promise => invoke("get_current_omo_provider_id"), getOmoProviderCount: (): Promise => invoke("get_omo_provider_count"), disableCurrentOmo: (): Promise => invoke("disable_current_omo"), };