This commit is contained in:
암냥 2025-09-13 16:18:28 +09:00
commit 40266cc6e5
191 changed files with 5022 additions and 0 deletions

12
Backend/__init__.py Normal file
View file

@ -0,0 +1,12 @@
from .router.router import router
import sys
from pathlib import Path
from Backend.utils.run_server import init_FastAPI
# 프로젝트 루트를 Python 경로에 추가
project_root = Path(__file__).parent
sys.path.insert(0, str(project_root))
app = init_FastAPI()
app.include_router(router)