Files
fb/app_fb/views.py
2018-05-12 04:47:41 +05:30

7 lines
145 B
Python

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