From 37f3ff92d04c7321136c98ff9968632825420788 Mon Sep 17 00:00:00 2001 From: Joshua Date: Sat, 17 Sep 2022 01:43:53 +0200 Subject: [PATCH] Add a S3 Path to the routes --- src/routes/s3/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/routes/s3/index.ts diff --git a/src/routes/s3/index.ts b/src/routes/s3/index.ts new file mode 100644 index 0000000..66c8747 --- /dev/null +++ b/src/routes/s3/index.ts @@ -0,0 +1,7 @@ +import { pogo } from "../../../deps.ts" +import S3Files from "../../s3.generated.ts" + +export const method = ['*'] +export const handler = (r, h: pogo.Response) => { + return S3Files +} \ No newline at end of file