diff options
| author | GitHub Action <[email protected]> | 2025-11-06 18:03:50 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2025-11-06 18:03:50 +0000 |
| commit | 90c2b267338e8cc11573e3c8316ae69619dbc8bb (patch) | |
| tree | 8c5fe84ed617c3ff7e89992b2c2e4423c279b4ce | |
| parent | 1ea3a8eb9beeb7d510fd29164ea741acec1ee04d (diff) | |
| download | opencode-90c2b267338e8cc11573e3c8316ae69619dbc8bb.tar.gz opencode-90c2b267338e8cc11573e3c8316ae69619dbc8bb.zip | |
chore: format code
| -rw-r--r-- | packages/opencode/src/cli/cmd/import.ts | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/packages/opencode/src/cli/cmd/import.ts b/packages/opencode/src/cli/cmd/import.ts index ef7d243f5..1c0c605f3 100644 --- a/packages/opencode/src/cli/cmd/import.ts +++ b/packages/opencode/src/cli/cmd/import.ts @@ -18,13 +18,15 @@ export const ImportCommand = cmd({ }, handler: async (args) => { await bootstrap(process.cwd(), async () => { - let exportData: { - info: Session.Info - messages: Array<{ - info: any - parts: any[] - }> - } | undefined + let exportData: + | { + info: Session.Info + messages: Array<{ + info: any + parts: any[] + }> + } + | undefined const isUrl = args.file.startsWith("http://") || args.file.startsWith("https://") |
