#!/opt/imunify360/venv/bin/python3
"""Stable package-script entrypoint for atomic imunify-core releases.

The implementation intentionally lives in the adjacent
``imunify_core_release.py`` module so RPM and Debian maintainer scripts share
one immutable command-line contract without importing ``defence360agent``.
"""

from imunify_core_release import main


if __name__ == "__main__":
    raise SystemExit(main())
