mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-27 13:57:46 +00:00
Co-authored-by: 夏姜 <wenfengjiang.jwf@digital-engine.com> Co-authored-by: yhjun1026 <460342015@qq.com> Co-authored-by: aries_ckt <916701291@qq.com> Co-authored-by: wb-lh513319 <wb-lh513319@alibaba-inc.com>
14 lines
452 B
TypeScript
14 lines
452 B
TypeScript
/** Theme */
|
|
export const STORAGE_THEME_KEY = '__db_gpt_theme_key';
|
|
/** Language */
|
|
export const STORAGE_LANG_KEY = '__db_gpt_lng_key';
|
|
/** Init Message */
|
|
export const STORAGE_INIT_MESSAGE_KET = '__db_gpt_im_key';
|
|
/** Token */
|
|
export const STORAGE_TOKEN_KET = '__db_gpt_tk_key';
|
|
/** UserInfo */
|
|
export const STORAGE_USERINFO_KEY = '__db_gpt_uinfo_key';
|
|
|
|
/** UserInfoValidTime */
|
|
export const STORAGE_USERINFO_VALID_TIME_KEY = '__db_gpt_uinfo_vt_key';
|