diff --git a/src/__init__.py b/src/__init__.py index b5f46371..657b1693 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -51,3 +51,14 @@ def get_hook_dirs() -> List[str]: import os # pylint: disable=g-import-not-at-top return [os.path.dirname(__file__)] + +__all__ = ( + "Fuzz", + "FuzzedDataProvider", + "Mutate", + "Setup", + "enabled_hooks", + "instrument_all", + "instrument_func", + "instrument_imports", +)