init repo

This commit is contained in:
liuyuanchuang
2025-12-10 18:33:37 +08:00
commit 48e63894eb
2408 changed files with 1053045 additions and 0 deletions

7
pkg/constant/context.go Normal file
View File

@@ -0,0 +1,7 @@
package constant
const (
ContextRequestID = "request_id"
ContextUserID = "user_id"
ContextIP = "ip"
)

5
pkg/constant/header.go Normal file
View File

@@ -0,0 +1,5 @@
package constant
const (
HeaderRequestID = "X-Request-ID"
)

5
pkg/constant/limit.go Normal file
View File

@@ -0,0 +1,5 @@
package constant
const (
VLMFormulaCount = 20
)