memgraph/tests/mgbench/workloads/__init__.py

5 lines
169 B
Python
Raw Normal View History

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"]