Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/console/plugins/clean_size/__init__.py
blob: fed740c09eefde83c72a3d3fa081430d30109d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

import info

INTERNALS = {
			# Basic information
			'PLGNAME': "Clean Size",
			'TABNAME': None,
			'AUTHOR': "Eduardo Silva",
			'DESC': "Print the approx real memory usage",

			# Plugin API
			'Plg': None, # Plugin object

			'top_data': [int], # Top data types needed by memphis core plugin
			'top_cols': ["Approx Real Usage (kb)"]
		}