mirror of
https://github.com/logos-storage/deluge.git
synced 2026-01-11 09:33:13 +00:00
10 lines
136 B
Python
10 lines
136 B
Python
class PluginBase:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def enable(self):
|
|
pass
|
|
def disable(self):
|
|
pass
|
|
|