mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
7749b4fc3c
+ install flask restful
12 lines
235 B
Python
12 lines
235 B
Python
from flask import Blueprint, request
|
|
from flask_restful import Api
|
|
|
|
from app.api.logger.tracks import LogTrack
|
|
|
|
|
|
api_bp = Blueprint("logger", __name__, url_prefix="/logger")
|
|
api = Api(api_bp)
|
|
|
|
|
|
api.add_resource(LogTrack, "/track/log")
|