mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
13 lines
207 B
Python
13 lines
207 B
Python
from app import app
|
|
from flask import redirect
|
|
|
|
|
|
@app.route("/redirect")
|
|
def redirectme():
|
|
return redirect("http://localhost:8000/redirected")
|
|
|
|
|
|
@app.route("/redirected")
|
|
def redirected():
|
|
return ""
|