01: Initial commit with neo4j

This commit is contained in:
exolonConfidental
2026-02-02 23:45:28 +05:30
commit 61162e01fb
15 changed files with 709 additions and 0 deletions

12
app/main.py Normal file
View File

@@ -0,0 +1,12 @@
from fastapi import FastAPI
from app.api.v1.router import api_router
from app.core.logging_config import setup_logging
setup_logging()
app = FastAPI(
title="Property CRM Graph API",
version="1.0.0"
)
app.include_router(api_router, prefix="/api/v1")