Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dissect/executable/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from dissect.executable.elf import ELF
from dissect.executable.pdb import PDB

__all__ = [
"ELF",
"PDB",
]
5 changes: 5 additions & 0 deletions dissect/executable/pdb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from dissect.executable.pdb.pdb import PDB

__all__ = [
"PDB",
]
Empty file.
Loading