/**
 * Result of creating an API key
 * 创建API密钥结果
 */
export type CreateApiKeyData = {
  /**
   * App key
   * 应用键
   */
  appKey: string;

  /**
   * App secret
   * 应用密钥
   */
  appSecret: string;
};
