11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import { runExit } from "clipanion";
|
|
|
|
import { WorkerCommand } from "#/cmd/worker";
|
|
import { BotCommand } from "#/cmd/bot";
|
|
|
|
|
|
runExit([
|
|
WorkerCommand,
|
|
BotCommand,
|
|
])
|