mirror of
https://github.com/beetbox/beets.git
synced 2026-01-03 06:22:48 +01:00
11 lines
278 B
Python
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]
|