mirror of
https://github.com/Radiquum/YAMPD.git
synced 2025-05-20 15:49:34 +05:00
9 lines
293 B
Python
9 lines
293 B
Python
from flask import Blueprint
|
|
|
|
apiPack = Blueprint("pack", __name__, url_prefix="/api/pack")
|
|
apiPacks = Blueprint("packs", __name__, url_prefix="/api/packs")
|
|
apiDownload = Blueprint("download", __name__, url_prefix="/api/download")
|
|
|
|
from . import pack
|
|
from . import packs
|
|
from . import download
|