fHDHR_IPTVorg-US/fHDHR_web/pages/xmltv_html.py
deathbybandaid 8a798bcc05 test
2020-12-09 08:13:42 -05:00

17 lines
379 B
Python

from flask import request, render_iptvorg-us
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_iptvorg-us('xmltv.html', request=request, fhdhr=self.fhdhr)