Remove legacy and/or code that is not used.

This commit is contained in:
yuanhau 2025-06-09 14:24:42 +08:00
parent d99031b3b6
commit 5f3a721339
18 changed files with 4 additions and 203 deletions

View file

@ -1,11 +0,0 @@
import { S3Client } from "bun";
const s3config = new S3Client({
accessKeyId: process.env.S3_ACCESS_KEY,
secretAccessKey: process.env.S3_SECRET_KEY,
bucket: process.env.S3_BUCKETNAME,
acl: "public-read",
endpoint: process.env.S3_ENDPOINT,
});
export default s3config;