mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-08-05 08:04:08 +00:00
22 lines
465 B
Python
22 lines
465 B
Python
"""Fixture system for seeding databases with dependency resolution."""
|
|
|
|
from .enum import LoadStrategy
|
|
from .registry import Context, FixtureRegistry
|
|
from .utils import (
|
|
get_field_by_attr,
|
|
get_obj_by_attr,
|
|
load_fixtures,
|
|
load_fixtures_by_context,
|
|
)
|
|
|
|
__all__ = [
|
|
"Context",
|
|
"FixtureRegistry",
|
|
"LoadStrategy",
|
|
"get_field_by_attr",
|
|
"get_obj_by_attr",
|
|
"load_fixtures",
|
|
"load_fixtures_by_context",
|
|
"register_fixtures",
|
|
]
|