8 lines
153 B
Python
8 lines
153 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from flask import render_template
|
|
from app import app
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return render_template('principal.html') |