6 lines
229 B
Python
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"] |