set up track logging

+ install flask restful
This commit is contained in:
mungai-njoroge
2023-12-01 10:55:07 +03:00
parent 8b40792ba0
commit 7749b4fc3c
8 changed files with 128 additions and 5 deletions
+4
View File
@@ -20,6 +20,7 @@ from app.api import (
settings,
lyrics,
plugins,
logger,
)
@@ -52,4 +53,7 @@ def create_api():
app.register_blueprint(plugins.api)
app.register_blueprint(lyrics_plugin.api)
# Logger
app.register_blueprint(logger.api_bp)
return app