···11#!/usr/bin/env node
22import { cli, define } from "gunshi";
33-import { list, zeroconf } from "./src/commands/index.ts";
33+import { list } from "./src/commands/list.ts";
44+import { zeroconf } from "./src/commands/zeroconf.ts";
4556const main = define({
67 name: "opencode-call-response",
-2
src/commands/index.ts
···11-export { list } from "./list.ts";
22-export { zeroconf } from "./zeroconf.ts";
+2-1
src/commands/list.ts
···11import { define } from "gunshi";
22-import { listSessions, displaySessions } from "../session/index.ts";
22+import { listSessions } from "../session/store.ts";
33+import { displaySessions } from "../session/types.ts";
3445export const list = define({
56 name: "list",
-4
src/sensor/index.ts
···11-export { Instance, Sensor } from "./types.ts";
22-export { MdnsSensor } from "./mdns.ts";
33-export { ProcSensor } from "./proc.ts";
44-export { CacheSensor, type CacheOptions } from "./cache.ts";
-7
src/session/index.ts
···11-export type { Session } from "./types.ts";
22-export type { ActiveSession } from "./active.ts";
33-export { getOpenCodeStoragePath, listSessions } from "./store.ts";
44-export { getActiveSessions } from "./active.ts";
55-export type { SessionFilter } from "./filter.ts";
66-export { filterSessions } from "./filter.ts";
77-export { displaySessions, matchesPattern } from "./types.ts";
-1
src/util/index.ts
···11-export { mergeGenerators } from "./generator.ts";