From dbf7f6d49f7c07955e41988321df3b9d1c6b9a9e Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 17 Oct 2024 02:46:08 +0200 Subject: [PATCH] Auto-reformat code from now on --- src/main.ts | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/main.ts b/src/main.ts index b6c6041..470acc6 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,12 +1,12 @@ import {createFederation} from "@fedify/fedify" import {RedisKvStore} from "https://jsr.io/@fedify/redis/0.3.0/src/kv.ts" -import {Redis} from "ioredis"; +import {Redis} from "ioredis" const federation = createFederation({ kv: new RedisKvStore( new Redis({}), - {} + {}, ), }); @@ -15,16 +15,15 @@ const handler: Deno.ServeHandler = function handler(request) { request, { contextData: undefined, - } - ) + }, + ); return response -} - +}; Deno.serve( { - port: 8080 + port: 8080, }, - handler -) + handler, +);