Rename create_app.py to app.py for Gunicorn command

This commit is contained in:
Xevion
2022-03-28 17:19:11 -05:00
parent e997d4f67e
commit 6dfed98ba3
6 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
from flask import Blueprint, flash, redirect, request, url_for
from flask_login import current_user, login_required
from .create_app import db
from .app import db
from .models import User, Post, Comment
blueprint = Blueprint('forms', __name__)