wynn/ts/src/main.ts

11 lines
170 B
TypeScript
Raw Normal View History

2025-02-27 03:56:30 +00:00
import { runExit } from "clipanion";
import { WorkerCommand } from "#/cmd/worker";
2025-03-01 21:10:31 +00:00
import { BotCommand } from "#/cmd/bot";
2025-02-27 03:56:30 +00:00
runExit([
WorkerCommand,
BotCommand,
])