Files
cdtestplant_v1/apps/dict/throttle.py

7 lines
291 B
Python
Raw Normal View History

2025-04-29 18:09:00 +08:00
from ninja_extra.throttling import UserRateThrottle
# ~~~~~~~~~~~注意当前只对缩略语添加1分钟一次用于Jmeter测试记得删除~~~~~~~~~~~
# 限流类 - 只能一分钟请求5次
class User60MinRateThrottle(UserRateThrottle):
rate = '60/min'
scope = 'minutes'