Skip to content

Commit

Permalink
feat: add entry point file for fs modules (denoland#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy authored and ry committed Apr 8, 2019
1 parent 0702b0a commit 26f1f18
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions fs/mod.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
export * from "./empty_dir.ts";
export * from "./ensure_dir.ts";
export * from "./ensure_file.ts";
export * from "./exists.ts";
export * from "./glob.ts";
export * from "./globrex.ts";
export * from "./move.ts";
export * from "./read_json.ts";
export * from "./write_json.ts";
export * from "./walk.ts";
export * from "./eol.ts";

0 comments on commit 26f1f18

Please sign in to comment.