mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 08:56:57 -05:00
17 lines
401 B
Python
17 lines
401 B
Python
from flask import request, render_template, session
|
|
|
|
|
|
class xmlTV_HTML():
|
|
endpoints = ["/xmltv", "/xmltv.html"]
|
|
endpoint_name = "page_xmltv_html"
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
def __call__(self, *args):
|
|
return self.get(*args)
|
|
|
|
def get(self, *args):
|
|
|
|
return render_template('xmltv.html', session=session, request=request, fhdhr=self.fhdhr)
|