UnisKB/apps/common/cache_data/static_resource_cache.py

20 lines
518 B
Python
Raw Normal View History

2024-07-25 03:54:41 +00:00
# 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