0543266c92
- Restructuring of the project directory into client and server components - Renaming of modules and classes to better reflect their purpose and functionality - Moving common utilities and configurations to a shared location - Updating import statements to reflect the new structure - Adding new documentation files for better clarity on various aspects of the project - Removing deprecated or unused code to streamline the codebase - Ensuring that all existing functionality is preserved and that the codebase remains functional after the refactoring.
18 lines
560 B
Python
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.0.5"
|