Files
python-bpf/pythonbpf/debuginfo/__init__.py
2025-10-08 17:25:29 +00:00

8 lines
234 B
Python

"""Debug information generation for BPF programs (DWARF/BTF)."""
from .dwarf_constants import * # noqa: F403
from .dtypes import * # noqa: F403
from .debug_info_generator import DebugInfoGenerator
__all__ = ["DebugInfoGenerator"]