2025 SSF Public

This commit is contained in:
janghanul090801 2025-09-12 14:47:48 +09:00
commit 76a02076c9
192 changed files with 5016 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)