Quellcode durchsuchen

chore: format code

GitHub Action vor 3 Monaten
Ursprung
Commit
90c2b26733
1 geänderte Dateien mit 9 neuen und 7 gelöschten Zeilen
  1. 9 7
      packages/opencode/src/cli/cmd/import.ts

+ 9 - 7
packages/opencode/src/cli/cmd/import.ts

@@ -18,13 +18,15 @@ export const ImportCommand = cmd({
   },
   },
   handler: async (args) => {
   handler: async (args) => {
     await bootstrap(process.cwd(), async () => {
     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://")
       const isUrl = args.file.startsWith("http://") || args.file.startsWith("https://")