feat(auth): 重构认证模块,添加OTP发送和登录功能

This commit is contained in:
2025-12-30 18:10:24 +08:00
parent 3952d80d30
commit 6d7f4ad1c6
8 changed files with 149 additions and 24 deletions

View File

@@ -3,6 +3,7 @@ package http
import (
super_v1 "quyun/v2/app/http/super/v1"
v1 "quyun/v2/app/http/v1"
v1_auth "quyun/v2/app/http/v1/auth"
"go.ipao.vip/atom/container"
)
@@ -10,6 +11,7 @@ import (
func Providers() container.Providers {
return container.Providers{
{Provider: v1.Provide},
{Provider: v1_auth.Provide},
{Provider: super_v1.Provide},
}
}