WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at main 22 lines 557 B view raw
1#!/usr/bin/env node 2import { defineCommand, runMain } from "citty"; 3import { initCommand } from "./commands/init.js"; 4import { categoryCommand } from "./commands/category.js"; 5import { boardCommand } from "./commands/board.js"; 6import { themeCommand } from "./commands/theme.js"; 7 8const main = defineCommand({ 9 meta: { 10 name: "atbb", 11 version: "0.1.0", 12 description: "atBB Forum management CLI", 13 }, 14 subCommands: { 15 init: initCommand, 16 category: categoryCommand, 17 board: boardCommand, 18 theme: themeCommand, 19 }, 20}); 21 22runMain(main);