mirror of
https://github.com/servo/servo.git
synced 2025-10-09 21:10:19 +01:00
6 lines
115 B
Python
6 lines
115 B
Python
import time
|
|
|
|
def main(request, response):
|
|
# Sleep for 3s to delay onload.
|
|
time.sleep(3)
|
|
return [], b""
|