mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 11:19:12 +01:00
* 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>
11 lines
207 B
TypeScript
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",
|
|
});
|