mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-13 19:47:45 +00:00
6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
import { S3Client } from "@aws-sdk/client-s3";
|
|
|
|
export const s3Client = new S3Client({
|
|
region: process.env.S3_REGION || "us-east-1",
|
|
});
|