Use gunicorn instead of Werkzeug and 32 more very minor changes (#35)

This commit is contained in:
Mungai Geoffrey
2022-04-21 03:29:42 +03:00
committed by GitHub
parent 68b474bbba
commit ef68cae625
33 changed files with 751 additions and 227 deletions
+5 -4
View File
@@ -1,12 +1,13 @@
"""
Contains all the album routes.
"""
from flask import Blueprint, request
from app import api
from app import helpers, cache
from app import functions
from app.lib import albumslib, trackslib
from app import helpers
from app.lib import albumslib
from app.lib import trackslib
from flask import Blueprint
from flask import request
album_bp = Blueprint("album", __name__, url_prefix="")