16 lines
348 B
Go
16 lines
348 B
Go
// Package abstract ...
|
|
//
|
|
// Description : abstract ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2025-05-07 21:13
|
|
package abstract
|
|
|
|
import "git.zhangdeman.cn/zhangdeman/network/httpclient/define"
|
|
|
|
// RateLimiter v2 流控口约束, v3移除了, 人工补齐
|
|
type RateLimiter interface {
|
|
Allow(reqCfg *define.Request) bool
|
|
}
|