Files
Homarr/packages/cli/src/index.ts
homarr-renovate[bot] a80b49a03e fix(deps): update dependency @drizzle-team/brocli to ^0.10.0 (#937)
* fix(deps): update dependency @drizzle-team/brocli to ^0.10.0

* fix: rename cliName to name

---------

Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
2024-08-08 21:43:04 +02:00

11 lines
207 B
TypeScript

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