mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-21 14:02:22 +02:00
13 lines
347 B
Python
13 lines
347 B
Python
__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"""
|