Skip to content

Commit

Permalink
fix neonctl plugin help
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 7, 2023
1 parent 44bd87d commit 887fa42
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

packages.default = pkgs.deno2nix.mkExecutable {
pname = "repl";
version = "0.6.0";
version = "0.6.1";

src = ./.;
lockfile = "./deno.lock";
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ if (import.meta.main) {
./((((((((((((((((((((((((((( .
.`)
);
console.log("Repl v0.6.0 πŸš€ ✨");
console.log("Repl v0.6.1 πŸš€ ✨");
console.log("exit using ctrl+c, or exit, type help for more info");
repl();
}
18 changes: 9 additions & 9 deletions plugins/neon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ class Neon implements Plugin {
help: () => {
console.log(`
Commands:
neonctl auth
auth
└────────────────> Authenticate
neonctl me
me
└────────────────> Show current user
neonctl projects
projects
└────────────────> Manage projects
neonctl branches
branches
└────────────────> Manage branches
neonctl databases
databases
└────────────────> Manage databases
neonctl roles
roles
└────────────────> Manage roles
neonctl operations
operations
└────────────────> Manage operations
neonctl connection-string [branch]
connection-string [branch]
└────────────────> Get connection string
neonctl completion
completion
└────────────────> generate completion script
`);
return Promise.resolve();
Expand Down

0 comments on commit 887fa42

Please sign in to comment.