Files
heartbeat/hbd/__init__.py
T
Andreas Wrede 9d81f96f31 version 5.0.4
2026-02-09 08:52:18 -05:00

12 lines
330 B
Python

"""hbd package - scaffolding for heartbeat daemon
This package contains the refactored modules for the original monolithic
`hbd` script. The initial implementation contains small scaffolds so you can
start moving functionality into the package.
"""
__all__ = ["main", "__version__"]
__version__ = "5.0.4"
from .cli import main