// Simple probe for Qiaoqiao import type { ResolvedQiaoqiaoAccount } from "./types.js"; export async function probeQiaoqiao(account: ResolvedQiaoqiaoAccount): Promise<{ ok: boolean; error?: string; appId?: string; botName?: string; botOpenId?: string; }> { try { // Simple implementation - just check if credentials exist if (!account.appId || !account.appSecret) { return { ok: false, error: "Missing credentials", }; } return { ok: true, appId: account.appId, botName: "Qiaoqiao Bot", botOpenId: "bot_open_id", }; } catch (err) { return { ok: false, error: err.message || String(err), }; } }