Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Jun 12, 2024
1 parent 02ad17a commit 06a8b1b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/backend/src/services/uploadService.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import { S3Client, ListBucketsCommand, PutObjectCommand, GetObjectCommand } from "@aws-sdk/client-s3";
import { Upload } from "@aws-sdk/lib-storage";
import { S3Client, PutObjectCommand, GetObjectCommand } from "@aws-sdk/client-s3";
import { ENV } from "../envVars";
import { makeDebug } from "../features/debug";
import { db } from "../db/db";
import { AppError } from "../features/errors";

const client = new S3Client({ endpoint: ENV.AWS_ENDPOINT, region: ENV.AWS_REGION });
const command = new ListBucketsCommand("");
const debug = makeDebug("upload");
export const upload = async () => {};

Expand Down

0 comments on commit 06a8b1b

Please sign in to comment.