FunkyJuiceRecipes/src/funkyjuicerecipes/data/models/base.py

14 lines
181 B
Python

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