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