mirror of https://github.com/pwndbg/pwndbg.git
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.
18 lines
373 B
Python
18 lines
373 B
Python
from __future__ import annotations
|
|
|
|
# isort: off
|
|
import pwndbg.lib.config
|
|
|
|
config: pwndbg.lib.config.Config = pwndbg.lib.config.Config()
|
|
# 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__
|
|
version = __version__
|