refactor: rename src/core/launch.ts to open.ts

This commit is contained in:
2026-03-20 13:33:30 +05:30
parent 71523f2144
commit 962c9a474f
5 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env bun
import { Command } from "commander";
import { launchMultiModel } from "./core/launch";
import { launchMultiModel } from "./core/open";
import { closeMultiModel } from "./core/close";
import { getBinaryName } from "./core/utils";
+1 -1
View File
@@ -1,3 +1,3 @@
export { launchMultiModel } from "./launch";
export { launchMultiModel } from "./open";
export { closeMultiModel } from "./close";
export * from "./utils";
+1 -1
View File
@@ -1,5 +1,5 @@
import { tool } from "@opencode-ai/plugin";
import { launchMultiModel } from "../core/launch";
import { launchMultiModel } from "../core/open";
import { getBinaryName } from "../core/utils";
/**