mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-30 03:39:51 +02:00
12 lines
414 B
Python
12 lines
414 B
Python
# This file is Copyright 2019 Volatility Foundation and licensed under the Volatility Software License 1.0
|
|
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
|
|
#
|
|
"""Defines the symbols architecture.
|
|
|
|
This is the namespace for all volatility symbols, and determines the
|
|
path for loading symbol ISF files
|
|
"""
|
|
from volatility.framework import constants
|
|
|
|
__path__ = constants.SYMBOL_BASEPATHS
|