blob: d2cfdc4c564f05d3c4a8bde81f0295d3e37e9c9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
from pychrysalide import PluginModule
from pychrysalide.gui import core
from .panel import CGlimpsePanel
class ContentGlimpse(PluginModule):
"""Convert raw values into interpreted values."""
_name = 'ContentGlimpse'
_desc = 'Display some glimpses of binary contents'
_version = '0.1'
_url = 'https://www.chrysalide.re/'
_actions = ( )
def __init__(self):
"""Initialize the plugin for Chrysalide."""
super(ContentGlimpse, self).__init__()
core.register_panel(CGlimpsePanel)
|