summaryrefslogtreecommitdiffstats
path: root/scripts/worker.ts
blob: ae9db49e1781d27902b00fbd5beb4001c7c06670 (plain) (blame)
1
2
3
4
5
6
export default {
    async fetch(request: Request, env: any) {
        // Serve static assets
        return env.ASSETS.fetch(request);
    }
};