update packages

This commit is contained in:
aronwk-aaron
2023-11-17 22:51:12 -06:00
parent 5ae2769ad2
commit abc8af89c5
8 changed files with 22 additions and 164 deletions

View File

@@ -2,16 +2,12 @@ from flask import render_template, Blueprint, send_from_directory
from flask_user import current_user, login_required
from app.models import Account, CharacterInfo, ActivityLog
from app.schemas import AccountSchema, CharacterInfoSchema
import datetime
import time
main_blueprint = Blueprint('main', __name__)
account_schema = AccountSchema()
char_info_schema = CharacterInfoSchema()
@main_blueprint.route('/', methods=['GET'])
def index():