opencode-agent[bot] 4 mesi fa
parent
commit
12b8e1c2be
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      packages/opencode/src/provider/auth.ts

+ 2 - 1
packages/opencode/src/provider/auth.ts

@@ -33,7 +33,8 @@ export namespace ProviderAuth {
       method: z.number(),
       method: z.number(),
       inputs: z.record(z.string(), z.string()).optional(),
       inputs: z.record(z.string(), z.string()).optional(),
     }),
     }),
-    async (input): Promise<Authorization | undefined> => runPromiseInstance(S.Service.use((svc) => svc.authorize(input))),
+    async (input): Promise<Authorization | undefined> =>
+      runPromiseInstance(S.Service.use((svc) => svc.authorize(input))),
   )
   )
 
 
   export const callback = fn(
   export const callback = fn(