feat: 增加rate limit 枚举值

This commit is contained in:
2026-01-02 21:43:57 +08:00
parent c3b314cb72
commit 189dc7f57c

14
rate_limit.go Normal file
View File

@@ -0,0 +1,14 @@
// Package consts ...
//
// Description : consts ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2026-01-02 21:43
package consts
const (
RateLimitDriverNull = "null"
RateLimitDriverRedis = "redis"
RateLimitDriverMemory = "memory"
)