lune-packaging/package/js/consts.ts

8 lines
178 B
TypeScript
Raw Normal View History

import { parse as parseToml } from "jsr:@std/toml";
export default parseToml(Deno.readTextFileSync("consts.toml")) as {
name: string;
api_url: string;
version: string;
};