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