First test
This commit is contained in:
34
Plugin.pm
34
Plugin.pm
@@ -0,0 +1,34 @@
|
||||
package Plugins::YoutubeMusic::Plugin;
|
||||
|
||||
use strict;
|
||||
|
||||
use base qw(Slim:Plugin:Base);
|
||||
|
||||
use Slim::Utils::Strings qw(string);
|
||||
use Slim::Utils::Prefs;
|
||||
use Slim::Utils::Log;
|
||||
|
||||
my $log = Slim::Utils::Log->addLogCategory({
|
||||
'category' => 'plugin.youtubemusic',
|
||||
'defaultLevel' => 'WARN',
|
||||
'description' => 'PLUGIN_YOUTUBEMUSIC',
|
||||
});
|
||||
|
||||
my $prefs = preferences('plugin.youtubemusic');
|
||||
|
||||
use Plugins::YoutubeMusic::ProtocolHandler;
|
||||
|
||||
sub initPlugin {
|
||||
my $class = shift;
|
||||
|
||||
$class->SUPER::initPlugin;
|
||||
}
|
||||
|
||||
sub shutdownPlugin {
|
||||
|
||||
}
|
||||
|
||||
sub getDisplayName { 'PLUGIN_YOUTUBEMUSIC' }
|
||||
|
||||
1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user