Files
pangolin/server/lib/s3.ts
2025-10-10 11:27:15 -07:00

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",
});