完善认证逻辑,添加用户信息 introspect 接口,更新 .gitignore 忽略 scripts 目录

This commit is contained in:
2025-04-26 17:59:34 +08:00
parent 08c88da0ce
commit 3e837b5fec
13 changed files with 67 additions and 1378 deletions

View File

@@ -11,3 +11,9 @@ type AuthForbiddenErr string
func (e AuthForbiddenErr) Error() string {
return string(e)
}
type DataErr string
func (e DataErr) Error() string {
return string(e)
}