pvanand commited on
Commit
10f3a01
·
verified ·
1 Parent(s): 49fb451

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -0
main.py CHANGED
@@ -16,6 +16,9 @@ logger = logging.getLogger(__name__)
16
 
17
  app = FastAPI()
18
 
 
 
 
19
  # API key configuration
20
  CHAT_AUTH_KEY = os.getenv("CHAT_AUTH_KEY")
21
  api_key_header = APIKeyHeader(name="X-API-Key", auto_error=False)
 
16
 
17
  app = FastAPI()
18
 
19
+ from file_conversion import router as file_conversion_router
20
+ app.include_router(file_conversion_router, prefix="/api/v1")
21
+
22
  # API key configuration
23
  CHAT_AUTH_KEY = os.getenv("CHAT_AUTH_KEY")
24
  api_key_header = APIKeyHeader(name="X-API-Key", auto_error=False)