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.
24 lines
421 B
Python
24 lines
421 B
Python
from __future__ import annotations
|
|
|
|
import types
|
|
|
|
|
|
class Config(types.ModuleType):
|
|
def __init__(self, module_name):
|
|
super().__init__(module_name)
|
|
|
|
def trigger(self, *args):
|
|
def wrapper(func):
|
|
return func
|
|
|
|
return wrapper
|
|
|
|
def add_param(self, *args, **kwargs):
|
|
pass
|
|
|
|
def add_param_obj(self, *args, **kwargs):
|
|
pass
|
|
|
|
def init_params(self):
|
|
pass
|