Shofel2_T124_python/venv/lib/python3.10/site-packages/qiling/debugger/debugger.py

19 lines
321 B
Python
Raw Permalink Normal View History

2024-05-25 16:45:07 +00:00
#!/usr/bin/env python3
#
# Cross Platform and Multi Architecture Advanced Binary Emulation Framework
#
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from qiling import Qiling
class QlDebugger:
def __init__(self, ql: 'Qiling'):
self.ql = ql
def run(self):
raise NotImplementedError