import { defineCommand } from "politty"; import { structureCommand } from "./structure"; import { thinCommand } from "./thin"; import { versionsCommand } from "./versions"; export const measureCommand = defineCommand({ name: "measure", description: "Measure repository code characteristics", subCommands: { thin: thinCommand, structure: structureCommand, versions: versionsCommand, }, });