8 lines
191 B
Python
8 lines
191 B
Python
from rest_framework.throttling import UserRateThrottle
|
|
|
|
class BurstRateThrottle(UserRateThrottle):
|
|
scope = 'burst'
|
|
|
|
class SustainedRateThrottle(UserRateThrottle):
|
|
scope = 'sustained'
|