mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import { S3Client } from '@aws-sdk/client-s3';
|
|
import config from '@/config';
|
|
|
|
export const s3 = new S3Client({
|
|
region: config.s3.region,
|
|
credentials: {
|
|
accessKeyId: config.s3.accessKeyId,
|
|
secretAccessKey: config.s3.secretAccessKey,
|
|
},
|
|
endpoint: config.s3.endpoint,
|
|
});
|