Add a S3 Path to the routes

This commit is contained in:
Joshua 2022-09-17 01:43:53 +02:00
parent a82a47d189
commit 37f3ff92d0

7
src/routes/s3/index.ts Normal file
View file

@ -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
}