MaxKB/apps/common/cache_data/static_resource_cache.py
2024-07-25 11:54:41 +08:00

20 lines
518 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding=utf-8
"""
@project: MaxKB
@Author
@file static_resource_cache.py
@date2024/7/25 11:30
@desc:
"""
from common.constants.cache_code_constants import CacheCodeConstants
from common.util.cache_util import get_cache
@get_cache(cache_key=lambda index_path: index_path,
version=CacheCodeConstants.STATIC_RESOURCE_CACHE.value)
def get_index_html(index_path):
file = open(index_path, "r", encoding='utf-8')
content = file.read()
file.close()
return content