5 lines
95 B
Python
5 lines
95 B
Python
from app import app
|
|
@app.route('/')
|
|
@app.route('/index')
|
|
def index():
|
|
return "Hello, word!" |