video 라우터 추가
parent
b7df726345
commit
51ea8164ab
2
main.py
2
main.py
|
|
@ -9,6 +9,7 @@ from app.database.session import engine
|
||||||
from app.home.api.routers.v1.home import router as home_router
|
from app.home.api.routers.v1.home import router as home_router
|
||||||
from app.lyric.api.routers.v1.lyric import router as lyric_router
|
from app.lyric.api.routers.v1.lyric import router as lyric_router
|
||||||
from app.song.api.routers.v1.song import router as song_router
|
from app.song.api.routers.v1.song import router as song_router
|
||||||
|
from app.video.api.routers.v1.video import router as video_router
|
||||||
from app.utils.cors import CustomCORSMiddleware
|
from app.utils.cors import CustomCORSMiddleware
|
||||||
from config import prj_settings
|
from config import prj_settings
|
||||||
|
|
||||||
|
|
@ -50,3 +51,4 @@ def get_scalar_docs():
|
||||||
app.include_router(home_router)
|
app.include_router(home_router)
|
||||||
app.include_router(lyric_router) # Lyric API 라우터 추가
|
app.include_router(lyric_router) # Lyric API 라우터 추가
|
||||||
app.include_router(song_router) # Song API 라우터 추가
|
app.include_router(song_router) # Song API 라우터 추가
|
||||||
|
app.include_router(video_router) # Video API 라우터 추가
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue