11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
|
import { Ini } from "./deps.ts";
|
||
|
|
||
|
const config =
|
||
|
Ini.decode(
|
||
|
await Deno.readFile("./data/config.ini").then((e) =>
|
||
|
new TextDecoder().decode(e)
|
||
|
)
|
||
|
) || {};
|
||
|
|
||
|
export default config;
|