Files
fb/app/views.py
2018-05-08 23:33:13 +05:30

8 lines
151 B
Python

from mini_amazon import app
from flask import render_template
@app.route('/', methods=['GET'])
def index():
return render_template('index.html')