[contrib] add a xbmc plugin that interracts with videoob

This commit is contained in:
Bezleputh 2014-09-02 16:48:17 +02:00
commit d1839bfcd4
23 changed files with 1036 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
from abc import ABCMeta, abstractmethod
class BaseAction():
__metaclass__ = ABCMeta
@abstractmethod
def _do(self, param=None):
"""
Overload this method in application type subclass
if you want to associate an action to the menu
"""
pass
actions = {}