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

14 lines
181 B
Python
Raw Normal View History

2025-12-18 20:30:09 +00:00
from __future__ import annotations
from peewee import Model
from . import db_proxy
class BaseModel(Model):
class Meta:
database = db_proxy
__all__ = ["BaseModel"]