Skip to content

Commit

Permalink
fix: cli executable type
Browse files Browse the repository at this point in the history
  • Loading branch information
ido-pluto committed Aug 18, 2023
1 parent ad58b39 commit ccfc39b
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions server/src/cli/cli.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import {Command} from 'commander';
import {installCommand} from './commands/install.js';
import {listModelsCommand} from './commands/models.js';
import {removeCommand} from './commands/remove.js';
import {useCommand} from './commands/use.js';
import {packageJSON} from '../storage/config.js';
import {updateHook} from './hooks/update.js';
import {updateCommand} from './commands/update.js';
import {uninstallCommand} from './commands/uninstall.js';
import {serveCommand} from './commands/serve.js';
import {activeCommand} from './commands/active.js';
import {postinstallCommand} from './commands/postinstall/postinstall.js';
#!/usr/bin/env node

import {Command} from "commander";
import {installCommand} from "./commands/install.js";
import {listModelsCommand} from "./commands/models.js";
import {removeCommand} from "./commands/remove.js";
import {useCommand} from "./commands/use.js";
import {packageJSON} from "../storage/config.js";
import {updateHook} from "./hooks/update.js";
import {updateCommand} from "./commands/update.js";
import {uninstallCommand} from "./commands/uninstall.js";
import {serveCommand} from "./commands/serve.js";
import {activeCommand} from "./commands/active.js";
import {postinstallCommand} from "./commands/postinstall/postinstall.js";

const program = new Command();
program.version(packageJSON.version);
Expand Down

0 comments on commit ccfc39b

Please sign in to comment.