Skip to content

Commit

Permalink
stub out create database
Browse files Browse the repository at this point in the history
  • Loading branch information
henryfauna committed Nov 22, 2024
1 parent 3d2b287 commit 1759832
Show file tree
Hide file tree
Showing 7 changed files with 139 additions and 62 deletions.
49 changes: 49 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions src/cli.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
import chalk from "chalk";
import yargs from "yargs";

import databaseCommand from "./commands/database.mjs";
import evalCommand from "./commands/eval.mjs";
import keyCommand from "./commands/key.mjs";
import evalCommand from "./commands/eval.mjs";
import shellCommand from "./commands/shell.mjs";
import loginCommand from "./commands/login.mjs";
import schemaCommand from "./commands/schema/schema.mjs";
import shellCommand from "./commands/shell.mjs";
import databaseCommand from "./commands/database/database.mjs";

import { authNZMiddleware } from "./lib/auth/authNZ.mjs";
import { checkForUpdates, fixPaths, logArgv } from "./lib/middleware.mjs";

Expand Down
Loading

0 comments on commit 1759832

Please sign in to comment.