mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
11 lines
222 B
Python
11 lines
222 B
Python
from flask import Blueprint
|
|
from flask_restful import Api
|
|
|
|
from .recents import RecentlyAdded
|
|
|
|
api_bp = Blueprint("home", __name__, url_prefix="/home")
|
|
api = Api(api_bp)
|
|
|
|
|
|
api.add_resource(RecentlyAdded, "/recents/added")
|