You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
375 B

# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved.
_migration_handler_manifest = None
def get_registered_migration_handler():
global _migration_handler_manifest
if _migration_handler_manifest is None:
from .migration_manifest import migration_manifest
_migration_handler_manifest = migration_manifest
return _migration_handler_manifest