API Router 사용하기 API Endpoints를 여러 .py 파일에 분리하여 작성하기 위한 APIRouter 라는 모듈이 존재한다. 해당 모듈을 사용하면 큰 갈래의 API들 끼리는 묶어 관리를 편하게 할 수 있다. 📁 Folder Structure ├── router │ ├── router_1.py // health check router │ └── router_2.py // servic1 router └── app.py Router 분기 작성 app.py에 router를 추가하고, prefix, tags 등을 설정한다. 🛠 app.py import uvicorn from fastapi import FastAPI from routers.router_1 import router as health_r..