1️⃣ 테스트용 파일 준비 (examples\sample.csv)name,age,scoreAlice,30,85Bob,25,90 2️⃣ main.py 작성 및 연동# app/main.pyimport typerfrom app.pipeline.reader import read_inputfrom app.utils.logger import get_loggerapp = typer.Typer()logger = get_logger(__name__)@app.command()def run( input_path: str = typer.Option(..., help="입력 파일 또는 폴더 경로"), output_path: str = typer.Option("./output", help="출력 경로"),): ..