01: Initial commit with neo4j
This commit is contained in:
12
app/main.py
Normal file
12
app/main.py
Normal 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")
|
||||
Reference in New Issue
Block a user