This commit is contained in:
2025-04-15 21:11:54 +08:00
commit 1927412d3f
30 changed files with 1333 additions and 0 deletions

8
pkg/utils/const.go Normal file
View File

@ -0,0 +1,8 @@
package utils
const (
LIST = "GET"
UPSERT = "POST"
DETAIL = "GET"
DELETE = "DELETE"
)