提交 b9ce3a64 编写于 作者: V Vincent LE GOFF 提交者: Ryan Dahl

Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420)


Original: https://github.com/denoland/deno_std/commit/aad0896346805513dc87eb01cd867a1513f574b1
上级 915b4f52
......@@ -5,7 +5,7 @@ type Closer = Deno.Closer;
type Reader = Deno.Reader;
type ReadResult = Deno.ReadResult;
type Writer = Deno.Writer;
import { FormFile } from "./formfile.ts";
import { FormFile } from "../multipart/formfile.ts";
import {
bytesFindIndex,
bytesFindLastIndex,
......
......@@ -15,7 +15,7 @@ import {
scanUntilBoundary
} from "./multipart.ts";
import * as path from "../fs/path.ts";
import { FormFile, isFormFile } from "./formfile.ts";
import { FormFile, isFormFile } from "../multipart/formfile.ts";
import { StringWriter } from "../io/writers.ts";
const e = new TextEncoder();
......
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./multipart_test.ts";
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./formfile_test.ts";
import "./multipart_test.ts";
......@@ -10,6 +10,7 @@ import "./http/test.ts";
import "./io/test.ts";
import "./log/test.ts";
import "./media_types/test.ts";
import "./mime/test.ts";
import "./multipart/test.ts";
import "./prettier/test.ts";
import "./strings/test.ts";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册