DenReg/registry/src/config.ts

11 lines
204 B
TypeScript
Raw Normal View History

2020-07-28 12:39:54 +00:00
import { Ini } from "./deps.ts";
const config =
Ini.decode(
await Deno.readFile("./data/config.ini").then((e) =>
new TextDecoder().decode(e)
)
) || {};
export default config;