8 lines
148 B
Python
8 lines
148 B
Python
|
import plugin
|
||
|
|
||
|
class LaunchpadURLHandler(plugin.Plugin):
|
||
|
capabilities = ['url_handler']
|
||
|
|
||
|
def do_test(self):
|
||
|
return "Launchpad blah"
|