base.py 205 B

12345
  1. # Import all the models, so that Base has them before being
  2. # imported by Alembic
  3. from app.db.base_class import Base # noqa
  4. from app.models.user import users # noqa
  5. from app.models.nft import nft # noqa