Files
Tommaso Fontana 639593164a Pypeline: add autocomplete and refactor CLI
Now pype has an `autocomplete` command usable to enable autocompletion
and revng2 now is based on `pype`, modifying its defalults and
injecting new commands.
2025-11-11 17:15:27 +01:00

14 lines
431 B
Python

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
#
from revng.pypeline.utils.registry import register_all_subclasses
# Trigger the import of all modules so we can register the classes
from . import local_provider # noqa: F401
from . import memory # noqa: F401
from . import null # noqa: F401
from .storage_provider import StorageProviderFactory
register_all_subclasses(StorageProviderFactory)