Files
FastGPT/packages/global/common/file/constants.ts
Archer ee8cb0915e i18n (#1444)
* adapt not input type

* adapt not input type

* file i18n

* publish i18n

* translate

* i18n
2024-05-11 00:21:01 +08:00

12 lines
233 B
TypeScript

/* mongo fs bucket */
export enum BucketNameEnum {
dataset = 'dataset'
}
export const bucketNameMap = {
[BucketNameEnum.dataset]: {
label: 'file.bucket.dataset'
}
};
export const ReadFileBaseUrl = '/api/common/file/read';