first commit

This commit is contained in:
Yangtao
2025-11-18 17:48:20 +08:00
commit 6e56cab848
196 changed files with 65809 additions and 0 deletions

11
pkg/secure/auth.go Normal file
View File

@ -0,0 +1,11 @@
package secure
const (
HeaderScopeCode = "X-SCOPE"
HeaderNonce = "X-NONCE"
HeaderSign = "X-S-SIGN"
TypeResource = "RESOURCE" // 资源权限
TypeInterface = "INTERFACE" // 接口权限
TypeData = "DATA" // 数据权限
)