add user auth boilerplate

This commit is contained in:
Viktor Barzin 2025-06-11 21:08:11 +00:00
parent 4a65664f4a
commit 4ad04775c9
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
8 changed files with 275 additions and 4 deletions

View file

@ -4,7 +4,7 @@ from sqlalchemy import engine_from_config
from sqlalchemy import pool
from alembic import context
from models import Listing # Import all models here
from models import Listing, User # Import all models here
from database import engine
import sqlmodel
from sqlmodel import SQLModel