]> kaliko git repositories - mpd-sima.git/blob - sima/plugins/contrib/placeholder.py
bd4f19cd60202c24ca7038090c890aed8234116c
[mpd-sima.git] / sima / plugins / contrib / placeholder.py
1 # -*- coding: utf-8 -*-
2 # Copyright (c) 2013, 2014, 2020 kaliko <kaliko@azylum.org>
3 #
4 #  This file is part of sima
5 #
6 #  sima is free software: you can redistribute it and/or modify
7 #  it under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation, either version 3 of the License, or
9 #  (at your option) any later version.
10 #
11 #  sima is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
15 #
16 #  You should have received a copy of the GNU General Public License
17 #  along with sima.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 #
20 """PlaceHolder
21 """
22
23 # standard library import
24
25 # third parties components
26
27 # local import
28 from sima.lib.plugin import Plugin
29
30 class PlaceHolder(Plugin):
31     """
32     Placeholder contrib plugin
33     """
34
35     def callback_player(self):
36         #self.log.info(self.plugin_conf)
37         #self.log.debug('%s contrib plugin!!!', self)
38         pass
39
40
41
42 # VIM MODLINE
43 # vim: ai ts=4 sw=4 sts=4 expandtab