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

@@ -0,0 +1,9 @@
package auth
func (r *Routes) Path() string {
return "/auth"
}
func (r *Routes) Middlewares() []any {
return []any{}
}