6 lines
125 B
Python
6 lines
125 B
Python
from rest_framework.throttling import AnonRateThrottle
|
|
|
|
|
|
class DemoStartThrottle(AnonRateThrottle):
|
|
scope = "demo_start"
|