diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-30 18:59:50 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-30 18:59:50 +0200 |
commit | c0cc240810f9280ca458c54b4cb69acc30e47e27 (patch) | |
tree | 32a50e26a430b301262ff31c636930bae9ee72ab /deno.ts | |
parent | 0162eca15fabe21a44d053ede62c5d9ef2c2c8f1 (diff) |
Slightly better organization for deno module.
Diffstat (limited to 'deno.ts')
-rw-r--r-- | deno.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/deno.ts b/deno.ts new file mode 100644 index 000000000..595d87709 --- /dev/null +++ b/deno.ts @@ -0,0 +1,6 @@ +// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> +// All rights reserved. MIT License. +// Public deno module. +// TODO get rid of deno.d.ts +export { pub, sub } from "./dispatch"; +export { readFileSync, writeFileSync } from "./os"; |