2021-03-23 22:26:59 +00:00
|
|
|
"""Flask blueprints for loading the app endpoints
|
|
|
|
"""
|
|
|
|
|
2019-09-30 14:19:00 +01:00
|
|
|
from .api import blueprint as api_blueprint
|
|
|
|
from .player import blueprint as player_blueprint
|
2019-10-07 12:21:26 +01:00
|
|
|
from .fm import blueprint as fm_blueprint
|
|
|
|
from .spotfm import blueprint as spotfm_blueprint
|
2019-10-10 11:58:17 +01:00
|
|
|
from .spotify import blueprint as spotify_blueprint
|
2019-10-20 21:07:13 +01:00
|
|
|
from .admin import blueprint as admin_blueprint
|
2020-02-03 11:51:46 +00:00
|
|
|
from .tag import blueprint as tag_blueprint
|