fHDHR_IPTVorg-US/fHDHR_web/pages/tools.py
deathbybandaid b9640987d4 test
2020-12-16 16:00:48 -05:00

17 lines
370 B
Python

from flask import request, render_template
class Tools_HTML():
endpoints = ["/tools", "/tools.html"]
endpoint_name = "tools_html"
def __init__(self, fhdhr):
self.fhdhr = fhdhr
def __call__(self, *args):
return self.get(*args)
def get(self, *args):
return render_template('tools.html', request=request, fhdhr=self.fhdhr)