Update: main.py and models.py had incorrect imports

This commit is contained in:
2025-11-16 19:34:19 +01:00
parent 1186c91dcf
commit 0eacb12c73
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
from fastapi import FastAPI
from . import models
from .database import engine
import models
from database import engine
# This line tells SQLAlchemy to create all the tables based on the models
# we defined. It will create the `multichat_overlay.db` file with the