UnisKB/apps/common/cache_data/static_resource_cache.py

20 lines
518 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 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