mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 20:29:10 +00:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
|
import { parse as parseToml } from "jsr:@std/toml";
|
||
|
|
||
|
export default parseToml(Deno.readTextFileSync("consts.toml")) as {
|
||
|
name: string;
|
||
|
api_url: string;
|
||
|
version: string;
|
||
|
};
|