fHDHR_NewsON/fHDHR/http/files/style_css.py
deathbybandaid 8c5cd7371f first commit
2020-11-27 15:27:23 -05:00

18 lines
408 B
Python

from flask import send_from_directory
class Style_CSS():
endpoints = ["/style.css"]
endpoint_name = "file_style_css"
def __init__(self, fhdhr):
self.fhdhr = fhdhr
def __call__(self, *args):
return self.get(*args)
def get(self, *args):
return send_from_directory(self.fhdhr.config.internal["paths"]["www_dir"],
'style.css')