mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
5 lines
83 B
Python
5 lines
83 B
Python
import time
|
|
|
|
def main(request, response):
|
|
time.sleep(2)
|
|
return 200, [], ''
|