Skip to content

Commit cbb6732

Browse files
committed
update
1 parent 2777ce9 commit cbb6732

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

simple_app.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,19 @@
88
from fastapi import FastAPI
99
from motor.motor_asyncio import AsyncIOMotorClient
1010

11-
# Simple app without complex dependencies
1211
app = FastAPI(
1312
title="AI Interview Coach API",
1413
version="1.0.0",
14+
swagger_ui_parameters={
15+
"url": "/api/openapi.json"
16+
}
1517
)
1618

1719

1820

1921

2022

23+
2124
# MongoDB connection
2225
client = None
2326
database = None

0 commit comments

Comments
 (0)