wynn/src/main.ts
2025-02-26 21:56:30 -06:00

13 lines
232 B
TypeScript

import { runExit } from "clipanion";
import { WorkerCommand } from "#/cmd/worker";
import { WynnCommands } from "#/cmd/wynn";
import { BotCommand } from "./cmd/bot";
runExit([
WorkerCommand,
BotCommand,
...WynnCommands,
])