FastAPI-Project / app /models /__init__.py
abdullah090809's picture
added from app.database import Base in models init file
6dfc429
Raw
History Blame Contribute Delete
132 Bytes
from app.models.posts import Post
from app.models.users import User
from app.models.votes import Votes
from app.database import Base