2024-05-08 02:24:21 +02:00
|
|
|
import { execute } from "@oclif/core";
|
2024-05-08 02:10:14 +02:00
|
|
|
import EmojiAdd from "./commands/emoji/add";
|
|
|
|
|
import UserCreate from "./commands/user/create";
|
|
|
|
|
import UserDelete from "./commands/user/delete";
|
|
|
|
|
import UserList from "./commands/user/list";
|
|
|
|
|
import UserReset from "./commands/user/reset";
|
|
|
|
|
|
2024-05-08 02:24:21 +02:00
|
|
|
// Use "explicit" oclif strategy to avoid issues with oclif's module resolver and bundling
|
2024-05-08 02:10:14 +02:00
|
|
|
export const commands = {
|
2024-05-08 02:24:21 +02:00
|
|
|
"user:list": UserList,
|
|
|
|
|
"user:delete": UserDelete,
|
|
|
|
|
"user:create": UserCreate,
|
|
|
|
|
"user:reset": UserReset,
|
|
|
|
|
"emoji:add": EmojiAdd,
|
2024-05-08 02:10:14 +02:00
|
|
|
};
|