/**
 * @file 认证模块路由定义
 * @author JunBin.Yang
 */
export class AuthRoutes {
  /**
   * 登录路由
   */
  static Login = "auth/login";

  /**
   * 短信验证码登录路由
   */
  static SmsLogin = "auth/sms-login";
}