mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import 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();
|
|
};
|