21 lines
416 B
Python
21 lines
416 B
Python
|
|
"""C2 adapter package. Import the factory from here."""
|
||
|
|
from backend.app.services.c2.adapter import (
|
||
|
|
C2Adapter,
|
||
|
|
C2Callback,
|
||
|
|
C2Health,
|
||
|
|
C2TaskPage,
|
||
|
|
C2TaskStatus,
|
||
|
|
decode_response_text,
|
||
|
|
)
|
||
|
|
from backend.app.services.c2.factory import get_adapter
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"C2Adapter",
|
||
|
|
"C2Callback",
|
||
|
|
"C2Health",
|
||
|
|
"C2TaskPage",
|
||
|
|
"C2TaskStatus",
|
||
|
|
"decode_response_text",
|
||
|
|
"get_adapter",
|
||
|
|
]
|