Files
sap-cli-skill/assets/sapcli/client.py
T
wurangyu 1e39b6da88 feat: sap-cli skill v2.1.0 — self-contained distributable package
- assets/: sap-cli source (v2.1.0, 26 commands, 16 object types)
- references/: tool constraints + error handling (self-contained)
- scripts/setup.py: one-click install/config/verify
- SKILL.md: full command reference + dual-platform install guide
- VERSION: 2.1.0

Built from D:/Codespace/sap-cli via scripts/pack_skill.py
2026-06-13 20:52:24 +08:00

12 lines
309 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""Backward-compatible re-export shim.
``sapcli/client.py`` → ``sapcli/client/__init__.py``
All public names are preserved so existing ``from sapcli.client import ADTClient``
imports continue to work unchanged.
"""
from sapcli.client import ADTClient # noqa: F401 re-export
__all__ = ["ADTClient"]