Add in basic plugin/config and renderer support.

This commit is contained in:
Mike Auty
2014-03-31 00:36:11 +01:00
parent 89e7e6e7ff
commit fa789fb174
6 changed files with 242 additions and 69 deletions
+12
View File
@@ -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"""