mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 00:22:10 +03:00
9 lines
104 B
Python
9 lines
104 B
Python
from app import app
|
|
import time
|
|
|
|
|
|
@app.route("/timeout")
|
|
def timeout():
|
|
time.sleep(2)
|
|
return ""
|