We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2777ce9 commit cbb6732Copy full SHA for cbb6732
1 file changed
simple_app.py
@@ -8,16 +8,19 @@
8
from fastapi import FastAPI
9
from motor.motor_asyncio import AsyncIOMotorClient
10
11
-# Simple app without complex dependencies
12
app = FastAPI(
13
title="AI Interview Coach API",
14
version="1.0.0",
+ swagger_ui_parameters={
15
+ "url": "/api/openapi.json"
16
+ }
17
)
18
19
20
21
22
23
+
24
# MongoDB connection
25
client = None
26
database = None
0 commit comments