mirror of
https://github.com/FutureOfMedTech-FITM-hack/backend.git
synced 2024-12-02 02:43:44 +03:00
15 lines
385 B
Python
15 lines
385 B
Python
"""med_backend models."""
|
|
import pkgutil
|
|
from pathlib import Path
|
|
|
|
|
|
def load_all_models() -> None:
|
|
"""Load all models from this folder."""
|
|
package_dir = Path(__file__).resolve().parent
|
|
modules = pkgutil.walk_packages(
|
|
path=[str(package_dir)],
|
|
prefix="med_backend.db.models.",
|
|
)
|
|
for module in modules:
|
|
__import__(module.name) # noqa: WPS421
|