2007-07-20 21:14:11 +00:00
|
|
|
plugin_name = _("Network Health Monitor")
|
2007-06-12 08:13:16 +00:00
|
|
|
plugin_author = "Alon Zakai, Zach Tibbitts"
|
|
|
|
plugin_version = "0.2"
|
2007-07-20 21:14:11 +00:00
|
|
|
plugin_description = _("Network Health Monitor plugin\n\nWritten by Kripkenstein")
|
2007-06-12 08:13:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def deluge_init(deluge_path):
|
|
|
|
global path
|
|
|
|
path = deluge_path
|
|
|
|
|
|
|
|
|
|
|
|
from NetworkHealth.plugin import plugin_NetworkHealth
|
|
|
|
|
|
|
|
def enable(core, interface):
|
|
|
|
global path
|
|
|
|
return plugin_NetworkHealth(path, core, interface)
|