mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-21 14:02:22 +02:00
9 lines
226 B
Python
9 lines
226 B
Python
"""Defines the plugin architecture
|
|
|
|
This is the namespace for all volatility plugins,
|
|
and determines the path for loading plugins
|
|
"""
|
|
import volatility.framework.constants as constants
|
|
|
|
__path__ = constants.PLUGINS_PATH
|