From bf454f83b845ef3a0ffc2a0852530e4ce8c56f14 Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Thu, 11 May 2023 10:29:54 +0200 Subject: [PATCH] rename module --- example/test.ts | 2 +- http_server.ts => mod.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename http_server.ts => mod.ts (100%) diff --git a/example/test.ts b/example/test.ts index 2e3e6c6..ec08912 100644 --- a/example/test.ts +++ b/example/test.ts @@ -1,5 +1,5 @@ import { Status } from "https://deno.land/std@0.186.0/http/http_status.ts"; -import { HTTPServer } from "../http_server.ts"; +import { HTTPServer } from "../mod.ts"; const httpServer = new HTTPServer(); diff --git a/http_server.ts b/mod.ts similarity index 100% rename from http_server.ts rename to mod.ts