Muse owns muse-shaped files now

This commit is contained in:
Endeavorance 2025-03-17 17:20:30 -04:00
parent 3e2ab6ec73
commit bf444ccb1a
23 changed files with 1288 additions and 201 deletions

View file

@ -1,6 +1,6 @@
import { parseArgs } from "node:util";
import { z } from "zod";
import { CLIError, MuseError } from "#lib/errors";
import { CLIError, MuseError } from "#lib";
const Renderers = ["json", "html"] as const;
const RendererSchema = z.enum(Renderers);