mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
639593164a
Now pype has an `autocomplete` command usable to enable autocompletion and revng2 now is based on `pype`, modifying its defalults and injecting new commands.
14 lines
431 B
Python
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)
|