Files
Medios-Macina/cmdlet/file/add_relationship.py
T

10 lines
385 B
Python
Raw Normal View History

2025-11-25 20:09:33 -08:00
from __future__ import annotations
2026-05-09 11:53:27 -07:00
"""Compatibility wrapper for moved metadata relationship add cmdlet."""
2025-11-25 20:09:33 -08:00
2026-05-09 11:53:27 -07:00
from cmdlet.metadata import relationship_add as _relationship_add
from cmdlet.metadata.relationship_add import * # noqa: F401,F403
2025-11-25 20:09:33 -08:00
2026-05-09 11:53:27 -07:00
# Preserve direct private helper imports used by tests and legacy callers.
_extract_hash_and_store = _relationship_add._extract_hash_and_store