()
| 469 | * 获取Beta计划状态 |
| 470 | */ |
| 471 | export async function getBetaStatus(): Promise<{ success: boolean; message: string; beta: number }> { |
| 472 | return fetchWithAuth<{ success: boolean; message: string; beta: number }>( |
| 473 | `${API_BASE_URL}/api/auth/beta-status`, |
| 474 | { method: 'GET' } |
| 475 | ); |
| 476 | } |
| 477 | |
| 478 | // ==================== 本地存储工具 ==================== |
| 479 |
nothing calls this directly
no test coverage detected