mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* feat(cli): add fix-username command to make all usernames lowercase * fix: add missing command
12 lines
278 B
TypeScript
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",
|
|
});
|