memgraph/tests/mgbench/workloads/__init__.py
2023-03-21 21:44:11 +01:00

5 lines
169 B
Python

from pathlib import Path
modules = Path(__file__).resolve().parent.glob("*.py")
__all__ = [f.name[:-3] for f in modules if f.is_file() and not f.name == "__init__.py"]