add routes for getting recently added items

This commit is contained in:
mungai-njoroge
2023-12-02 01:59:03 +03:00
parent 7749b4fc3c
commit b03e721ee5
9 changed files with 198 additions and 4 deletions
+4
View File
@@ -21,6 +21,7 @@ from app.api import (
lyrics,
plugins,
logger,
home,
)
@@ -56,4 +57,7 @@ def create_api():
# Logger
app.register_blueprint(logger.api_bp)
# Home
app.register_blueprint(home.api_bp)
return app