Files
pangolin/server/lib/s3.ts
2025-12-09 10:56:14 -05:00

6 lines
140 B
TypeScript

import { S3Client } from "@aws-sdk/client-s3";
export const s3Client = new S3Client({
region: process.env.S3_REGION || "us-east-1"
});