mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 03:05:35 +00:00
12 lines
290 B
Python
12 lines
290 B
Python
from flask import Blueprint
|
|
from flask_restful import Api
|
|
|
|
from .recents import RecentlyAdded, RecentlyPlayed
|
|
|
|
api_bp = Blueprint("home", __name__, url_prefix="/home")
|
|
api = Api(api_bp)
|
|
|
|
|
|
api.add_resource(RecentlyAdded, "/recents/added")
|
|
api.add_resource(RecentlyPlayed, "/recents/played")
|