Files
MultiChatOverlay/main.py

15 lines
415 B
Python

from fastapi import FastAPI
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
# 'users' and 'settings' tables if they don't exist.
models.Base.metadata.create_all(bind=engine)
app = FastAPI()
@app.get("/")
async def read_root():
return {"message": "MultiChatOverlay API"}