mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
6 lines
148 B
Python
6 lines
148 B
Python
import time
|
|
|
|
def main(request, response):
|
|
delay = float(request.GET.first(b"delay", 2000)) / 1000
|
|
time.sleep(delay)
|
|
return 200, [], b''
|