mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 16:26:40 +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 ""
|