diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-04-02 08:44:38 +0300 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-04-02 08:44:38 +0300 |
| commit | d835d79eb24c730ec8148415113e846a01cefd19 (patch) | |
| tree | 5df99a29f23b6e58968744f1385cda9dbe93c7d6 | |
| parent | 69e67d049411ceb5c839386b020ce2c77ffc2847 (diff) | |
add cors
| -rw-r--r-- | app/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.py b/app/main.py index 8506b37..59ed4b7 100644 --- a/app/main.py +++ b/app/main.py @@ -4,10 +4,10 @@ from fastapi import FastAPI from sqlalchemy import text from app.routes import router as api_router +from app.utils.cors import setup_cors from app.utils.create_tables import init_db from app.utils.db import engine from app.utils.logger_cfg import logger -from app.utils.cors import setup_cors app_start_time = time.perf_counter() logger.debug("App start timestamp recorded") |
