Files
keyboard/Shared/KBAPI.h

20 lines
546 B
C
Raw Normal View History

2025-11-13 18:03:26 +08:00
//
// KBAPI.h
// 统一管理所有接口路径的宏,避免在代码中散落硬编码字符串。
// 注意:这里的路径为相对 KB_BASE_URL 的“相对路径”,可带或不带开头的斜杠。
//
#ifndef KBAPI_h
#define KBAPI_h
2025-11-13 19:07:59 +08:00
// 兼容旧命名(如有使用 API_APPLE_LOGIN 的位置,映射到统一命名)
2025-11-13 18:03:26 +08:00
#define API_APPLE_LOGIN @"/user/appleLogin" // Apple 登录
// 应用配置
#ifndef KB_API_APP_CONFIG
#define KB_API_APP_CONFIG @"app/config" // 获取 App 配置
#endif
#endif /* KBAPI_h */