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
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";
6
7const main = defineCommand({
8 meta: {
9 name: "atbb",
10 version: "0.1.0",
11 description: "atBB Forum management CLI",
12 },
13 subCommands: {
14 init: initCommand,
15 category: categoryCommand,
16 board: boardCommand,
17 },
18});
19
20runMain(main);