beets/test/rsrc/beetsplug/test.py
2014-01-20 17:39:46 +01:00

11 lines
278 B
Python

from beets.plugins import BeetsPlugin
from beets import ui
class TestPlugin(BeetsPlugin):
def __init__(self):
super(TestPlugin, self).__init__()
def commands(self):
cmd = ui.Subcommand('test')
cmd.func = lambda *args: None
return [cmd]