From 4d997d4e2239adb0d982245271e43938443e871f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 24 Aug 2019 10:38:18 -0700 Subject: Move colors to fmt (denoland/deno_std#571) Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a --- ws/README.md | 2 +- ws/example_client.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ws') diff --git a/ws/README.md b/ws/README.md index 3b44b6eea..fe5bae983 100644 --- a/ws/README.md +++ b/ws/README.md @@ -85,7 +85,7 @@ import { import { encode } from "https://deno.land/std/strings/mod.ts"; import { BufReader } from "https://deno.land/std/io/bufio.ts"; import { TextProtoReader } from "https://deno.land/std/textproto/mod.ts"; -import { blue, green, red, yellow } from "https://deno.land/std/colors/mod.ts"; +import { blue, green, red, yellow } from "https://deno.land/std/fmt/colors.ts"; const endpoint = Deno.args[1] || "ws://127.0.0.1:8080"; async function main(): Promise { diff --git a/ws/example_client.ts b/ws/example_client.ts index cdb482410..665c4cd8c 100644 --- a/ws/example_client.ts +++ b/ws/example_client.ts @@ -7,7 +7,7 @@ import { import { encode } from "../strings/mod.ts"; import { BufReader } from "../io/bufio.ts"; import { TextProtoReader } from "../textproto/mod.ts"; -import { blue, green, red, yellow } from "../colors/mod.ts"; +import { blue, green, red, yellow } from "../fmt/colors.ts"; const endpoint = Deno.args[1] || "ws://127.0.0.1:8080"; /** simple websocket cli */ -- cgit v1.2.3