mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
15 lines
223 B
Python
15 lines
223 B
Python
# coding=utf-8
|
||
"""
|
||
@project: MaxKB
|
||
@Author:虎虎
|
||
@file: cache_version.py
|
||
@date:2025/4/14 19:09
|
||
@desc:
|
||
"""
|
||
from enum import Enum
|
||
|
||
|
||
class Cache_Version(Enum):
|
||
# 系统用户
|
||
TOKEN = "TOKEN"
|