mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
11 lines
207 B
Python
11 lines
207 B
Python
from tests import app
|
|
from flask import redirect
|
|
|
|
@app.route('/redirect')
|
|
def redirectme():
|
|
return redirect('http://localhost:8000/redirected')
|
|
|
|
@app.route('/redirected')
|
|
def redirected():
|
|
return ''
|