mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-07 18:27:39 +02:00
Add in basic plugin/config and renderer support.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
__author__ = 'mike'
|
||||
|
||||
from volatility.framework.interfaces import renderers as interface
|
||||
|
||||
class TextRenderer(interface.Renderer):
|
||||
|
||||
def __init__(self, options):
|
||||
interface.Renderer.__init__(self, options)
|
||||
self._options = options
|
||||
|
||||
def render(self, grid):
|
||||
"""Renders a text grid based on the contents of each element"""
|
||||
Reference in New Issue
Block a user