mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00

* adapt not input type * adapt not input type * file i18n * publish i18n * translate * i18n
12 lines
233 B
TypeScript
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';
|