mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-02-23 03:32:00 +00:00
6 lines
114 B
Python
6 lines
114 B
Python
|
from rest_framework import throttling
|
||
|
|
||
|
|
||
|
class BurstRateThrottle(throttling.UserRateThrottle):
|
||
|
scope = "burst"
|