7 lines
142 B
Python
7 lines
142 B
Python
from flask import url_for, redirect, render_template, flash, g, session
|
|
from app import app
|
|
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return "hello"
|