19 lines
524 B
Python
19 lines
524 B
Python
# Entity: Song
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException, status
|
|
from sqlalchemy.orm import Session
|
|
from typing import List
|
|
from core.database import get_db
|
|
from models.song import Song
|
|
from schemas.song import SongSchema
|
|
from helpers.song_helpers import get_all_songs
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/playlist", status_code=200, response_model=List[SongSchema])
|
|
async def get_playlist(
|
|
db: Session = Depends(get_db)
|
|
):
|
|
"""Get all songs from library"""
|
|
songs = get_all_songs(db)
|
|
return songs |