Skip to content

Commit

Permalink
Follow changes of renaming strings package on denoland
Browse files Browse the repository at this point in the history
  • Loading branch information
mactkg committed Jun 3, 2019
1 parent a18861e commit a2ba92b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
Deferred,
defer,
} from 'https://deno.land/x/std@v0.2.11/util/deferred.ts';
import { decode } from 'https://deno.land/std/strings/strings.ts';
import { decode } from 'https://deno.land/std/strings/mod.ts';
import { Response, processResponse } from './response.ts';
import { ErrorCode, getErrorMessage } from './errors.ts';
import { Method, Handler, HandlerConfig } from './handler.ts';
Expand Down
2 changes: 1 addition & 1 deletion response.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Reader = Deno.Reader;
import { encode } from 'https://deno.land/std/strings/strings.ts';
import { encode } from 'https://deno.land/std/strings/mod.ts';

// HeaderMap is a type of response headers.
type HeaderMap =
Expand Down

0 comments on commit a2ba92b

Please sign in to comment.