#!/usr/bin/env node import { defineCommand, runMain } from "citty"; import { initCommand } from "./commands/init.js"; import { categoryCommand } from "./commands/category.js"; import { boardCommand } from "./commands/board.js"; import { themeCommand } from "./commands/theme.js"; const main = defineCommand({ meta: { name: "atbb", version: "0.1.0", description: "atBB Forum management CLI", }, subCommands: { init: initCommand, category: categoryCommand, board: boardCommand, theme: themeCommand, }, }); runMain(main);