mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
14 lines
290 B
Python
14 lines
290 B
Python
from flask import Blueprint
|
|
from app.db.store import Store
|
|
|
|
api = Blueprint("colors", __name__, url_prefix="/colors")
|
|
|
|
|
|
@api.route("/album/<albumhash>")
|
|
def get_album_color(albumhash: str):
|
|
album = Store.get_album_by_hash(albumhash)
|
|
|
|
return {
|
|
"color": album.colors[0]
|
|
}
|