mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-14 13:06:30 +03:00
fix: relocate binary analysis skill
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
"""Backend adapters — abstract interface, FakeAdapter for testing, Ghidra adapter."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from binary_analysis.adapters.base import (
|
||||
AnalysisProfile,
|
||||
AnalysisResult,
|
||||
BackendAdapter,
|
||||
BinaryMetadata,
|
||||
CallEdge,
|
||||
ConcurrencyMode,
|
||||
DecompilationResult,
|
||||
)
|
||||
from binary_analysis.adapters.fake import FakeAdapter
|
||||
from binary_analysis.adapters.ghidra import GhidraAdapter
|
||||
|
||||
__all__ = [
|
||||
"AnalysisProfile",
|
||||
"AnalysisResult",
|
||||
"BackendAdapter",
|
||||
"BinaryMetadata",
|
||||
"CallEdge",
|
||||
"ConcurrencyMode",
|
||||
"DecompilationResult",
|
||||
"FakeAdapter",
|
||||
"GhidraAdapter",
|
||||
]
|
||||
Reference in New Issue
Block a user