Refactor app structure and simplify team docs
This commit is contained in:
19
backend/app/repositories/__init__.py
Normal file
19
backend/app/repositories/__init__.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from .organization import (
|
||||
fetch_current_member_state,
|
||||
fetch_current_seat_assignments,
|
||||
fetch_history_revision,
|
||||
fetch_history_revision_created_at,
|
||||
fetch_history_revisions,
|
||||
fetch_members,
|
||||
fetch_members_as_of,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"fetch_current_member_state",
|
||||
"fetch_current_seat_assignments",
|
||||
"fetch_history_revision",
|
||||
"fetch_history_revision_created_at",
|
||||
"fetch_history_revisions",
|
||||
"fetch_members",
|
||||
"fetch_members_as_of",
|
||||
]
|
||||
Reference in New Issue
Block a user