diff --git a/src/core/constant/TGConstant.ts b/src/core/constant/TGConstant.ts new file mode 100644 index 00000000..458ffad4 --- /dev/null +++ b/src/core/constant/TGConstant.ts @@ -0,0 +1,14 @@ +/** + * @file core constant TGConstant.ts + * @description 常量 + * @author BTMuli + * @since Alpha v0.2.0 + */ + +import SALT from "./salt"; + +const TGConstant = { + SALT, +}; + +export default TGConstant; diff --git a/src/core/constant/salt.ts b/src/core/constant/salt.ts new file mode 100644 index 00000000..c4388216 --- /dev/null +++ b/src/core/constant/salt.ts @@ -0,0 +1,24 @@ +/** + * @file core constant salt.ts + * @description 用到的 salt 值 + * @author BTMuli + * @since Alpha v0.2.0 + */ + +/** + * @description salt 值 + * @version 2.49.1 + * @since Alpha v0.2.0 + */ +const SALT = { + BBS: { + K2: "egBrFMO1BPBG0UX5XOuuwMRLZKwTVKRV", + LK2: "DG8lqMyc9gquwAUFc7zBS62ijQRX9XF7", + }, + Other: { + X4: "OYcKGMRDRpnluotQHWwPDnV4xZG4WRMx", + X6: "t0qEgfub6cvueAPgR5m9aQWWVciEer7v", + }, +}; + +export default SALT;