2025-06-05 14:29:01 +00:00

6 lines
229 B
Python

# Explicitly re-export these modules to make them available when importing from app.crud
from app.crud.crud_note import note
from app.crud.crud_tag import tag
from app.crud.crud_user import user
__all__ = ["user", "note", "tag"]