10 lines
385 B
Python
10 lines
385 B
Python
from __future__ import annotations
|
|
|
|
"""Compatibility wrapper for moved metadata relationship add cmdlet."""
|
|
|
|
from cmdlet.metadata import relationship_add as _relationship_add
|
|
from cmdlet.metadata.relationship_add import * # noqa: F401,F403
|
|
|
|
# Preserve direct private helper imports used by tests and legacy callers.
|
|
_extract_hash_and_store = _relationship_add._extract_hash_and_store
|