DenReg/registry/src/registry.ts

11 lines
183 B
TypeScript
Raw Normal View History

2020-07-28 13:35:50 +00:00
import { FS } from "./deps.ts";
2020-07-28 12:39:54 +00:00
try {
2020-07-28 13:35:50 +00:00
Deno.removeSync("./tmp", { recursive: true });
2020-07-28 12:39:54 +00:00
} catch (err) {}
2020-07-28 13:35:50 +00:00
FS.ensureDirSync("./tmp");
FS.ensureDirSync("./data");
2020-07-28 12:39:54 +00:00
import "./http.ts";