package auth type AuthRepository interface { LoginByPassword(phone, password string) (string, error) LoginByCaptcha(phone, openid string) (string, error) }