Files
heartbeat/hbd/__init__.py
T
Andreas Wrede 8a1f412d1d
Release / release (push) Successful in 43s
version 5.3.9
2026-05-31 20:58:58 -04:00

18 lines
560 B
Python

"""hbd package - heartbeat monitoring system
This package contains both the heartbeat client (hbc) and server (hbd) components,
organized into separate subpackages:
- hbd.client: Client component with system monitoring plugins
- hbd.server: Server/daemon component with web UI and notifications
- hbd.common: Shared utilities and protocol definitions
Install options:
- pip install hbd[client] # Client only
- pip install hbd[server] # Server only
- pip install hbd[all] # Both client and server
"""
__all__ = ["__version__"]
__version__ = "5.3.9"