mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 03:35:36 +00:00
22 lines
462 B
TypeScript
22 lines
462 B
TypeScript
export enum SystemConfigsTypeEnum {
|
|
fastgpt = 'fastgpt',
|
|
fastgptPro = 'fastgptPro',
|
|
systemMsgModal = 'systemMsgModal',
|
|
license = 'license'
|
|
}
|
|
|
|
export const SystemConfigsTypeMap = {
|
|
[SystemConfigsTypeEnum.fastgpt]: {
|
|
label: 'fastgpt'
|
|
},
|
|
[SystemConfigsTypeEnum.fastgptPro]: {
|
|
label: 'fastgptPro'
|
|
},
|
|
[SystemConfigsTypeEnum.systemMsgModal]: {
|
|
label: 'systemMsgModal'
|
|
},
|
|
[SystemConfigsTypeEnum.license]: {
|
|
label: 'license'
|
|
}
|
|
};
|