12 lines
169 B
Python
12 lines
169 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return "HEllo"
|
|
|
|
@app.route('/test')
|
|
def test():
|
|
return render_template('test.html')
|