summaryrefslogtreecommitdiff
path: root/plugin.video.watchbox/default.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.video.watchbox/default.py')
-rw-r--r--plugin.video.watchbox/default.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugin.video.watchbox/default.py b/plugin.video.watchbox/default.py
new file mode 100644
index 0000000..5e6af10
--- /dev/null
+++ b/plugin.video.watchbox/default.py
@@ -0,0 +1,37 @@
+# -*- coding: utf-8 -*-
+# Watchbox
+# Copyright (C) 2017 MrKrabat
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+import xbmc
+import xbmcaddon
+
+
+_plugId = "plugin.video.watchbox"
+
+# plugin constants
+_addon = xbmcaddon.Addon(id=_plugId)
+_plugin = _addon.getAddonInfo("name")
+_version = _addon.getAddonInfo("version")
+
+xbmc.log("[PLUGIN] %s: version %s initialized" % (_plugin, _version))
+
+if __name__ == "__main__":
+ from resources.lib import watchbox
+ # start addon
+ watchbox.main()
+
+sys.modules.clear()