Files
flask_url_shortener/tiny0/routes.py
T
2020-07-18 13:10:03 +00:00

10 lines
244 B
Python

from flask import render_template, redirect, request, flash, url_for
from tiny0 import app
#from tiny0.forms import URLForm
#from tiny0.models import URLs
#from token import gen_valid_token
@app.route("/")
def index():
return "Hello, world!"