movidas las vistas dedicadas al login hacia el archivo auth.py para mayor coherencia

This commit is contained in:
Daniel Cortes
2019-02-16 02:57:47 -03:00
parent de406e37ca
commit a473173ce4
9 changed files with 76 additions and 65 deletions

View File

@@ -25,6 +25,9 @@ def create_app():
from . import db
db.init_app(app)
from . import auth
app.register_blueprint(auth.bp)
from . import admin
app.register_blueprint(admin.bp)