You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/pwndbg/__init__.py

23 lines
458 B
Python

from __future__ import annotations
# isort: off
import pwndbg.lib.config
config: pwndbg.lib.config.Config = pwndbg.lib.config.Config()
"""
The global configuration object.
"""
# isort: on
import pwndbg.color
import pwndbg.exception
import pwndbg.lib.version
import pwndbg.ui
from pwndbg import dbg as dbg_mod
from pwndbg.dbg import dbg as dbg
__version__ = pwndbg.lib.version.__version__
"""Pwndbg version."""
version = __version__
"""Pwndbg version."""