mirror of
https://github.com/servo/servo.git
synced 2025-07-05 14:33:38 +01:00
7 lines
256 B
Python
7 lines
256 B
Python
import time
|
|
|
|
def main(request, response):
|
|
delay = float(request.GET.first("ms", 500))
|
|
time.sleep(delay / 1E3);
|
|
|
|
return [("Access-Control-Allow-Origin", "*"), ("Access-Control-Allow-Methods", "YO"), ("Content-type", "text/plain")], "TEST_DELAY"
|