15 lines
258 B
Go
15 lines
258 B
Go
// Package consts ...
|
|
//
|
|
// Description : consts ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2026-01-02 21:43
|
|
package consts
|
|
|
|
const (
|
|
RateLimitDriverNull = "null"
|
|
RateLimitDriverRedis = "redis"
|
|
RateLimitDriverMemory = "memory"
|
|
)
|