From 132650cdf366e676c0ffec0cc68792c45149aacd Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 2 Feb 2019 18:57:38 -0500 Subject: Rename http/http.ts to http/server.ts (denoland/deno_std#170) Remove http/mod.ts Original: https://github.com/denoland/deno_std/commit/e79cb5a31ab3d7667f2253824bf89cecc23ab231 --- http/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'http/README.md') diff --git a/http/README.md b/http/README.md index c598cdef4..2c9a90853 100644 --- a/http/README.md +++ b/http/README.md @@ -5,7 +5,7 @@ A framework for creating HTTP/HTTPS server. ## Example ```typescript -import { serve } from "https://deno.land/x/http/mod.ts"; +import { serve } from "https://deno.land/x/http/server.ts"; const s = serve("0.0.0.0:8000"); async function main() { -- cgit v1.2.3