Files
Homarr/packages/cli/src/index.ts
Meier Lukas 8b7caf1d7d feat(cli): add fix-username command to make all usernames lowercase (#2366)
* feat(cli): add fix-username command to make all usernames lowercase

* fix: add missing command
2025-02-18 22:02:42 +01:00

12 lines
278 B
TypeScript

import { run } from "@drizzle-team/brocli";
import { fixUsernames } from "./commands/fix-usernames";
import { resetPassword } from "./commands/reset-password";
const commands = [resetPassword, fixUsernames];
void run(commands, {
name: "homarr-cli",
version: "1.0.0",
});