1
0
Files
bigcapital/packages/server/src/modules/Attachments/utils.ts
T
2025-05-28 17:01:46 +02:00

11 lines
255 B
TypeScript

import * as path from 'path';
// import config from '@/config';
export const getUploadedObjectUri = (objectKey: string) => {
return '';
// return new URL(
// path.join(config.s3.bucket, objectKey),
// config.s3.endpoint
// ).toString();
};