Lakka-LibreELEC/packages/addons/service/nextpvr/source/default.py
emveepee 0470f51bc8 nextpvr: initial addon
NextPVR 6.1.0 with netcore 6 with configuration
2022-10-21 20:06:06 -04:00

17 lines
342 B
Python

# SPDX-License-Identifier: GPL-2.0-only
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
import xbmc
import xbmcaddon
class Monitor(xbmc.Monitor):
def __init__(self, *args, **kwargs):
xbmc.Monitor.__init__(self)
def onSettingsChanged(self):
pass
if __name__ == "__main__":
Monitor().waitForAbort()