Files
cdtestplant_v1/apps/dict/throttle.py
2025-04-29 18:09:00 +08:00

7 lines
291 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from ninja_extra.throttling import UserRateThrottle
# ~~~~~~~~~~~注意当前只对缩略语添加1分钟一次用于Jmeter测试记得删除~~~~~~~~~~~
# 限流类 - 只能一分钟请求5次
class User60MinRateThrottle(UserRateThrottle):
rate = '60/min'
scope = 'minutes'