from __future__ import annotations from peewee import Model from . import db_proxy class BaseModel(Model): class Meta: database = db_proxy __all__ = ["BaseModel"]