Make the plugin a module so it can coexist with other plugins

This commit is contained in:
Gergely Polonkai 2015-02-05 17:57:15 +01:00
parent 727448a577
commit c67e6ebae4
1 changed files with 7 additions and 0 deletions

7
__init__.py Normal file
View File

@ -0,0 +1,7 @@
import linklist
class LinkListPlugin(linklist.LinkListPlugin):
pass
class LinkListCommand(linklist.LinkListCommand):
pass