We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf29c5d commit e7845abCopy full SHA for e7845ab
src/onepassword/core.py
@@ -23,6 +23,10 @@ async def _init_client(client_config):
23
async def _invoke(invoke_config):
24
return await core.invoke(json.dumps(invoke_config))
25
26
+# Invoke calls specified business logic from the SDK core.
27
+def _invoke_sync(invoke_config):
28
+ return core.invoke_sync(json.dumps(invoke_config))
29
+
30
31
# ReleaseClient releases memory in the SDK core associated with the given client ID.
32
def _release_client(client_id):
0 commit comments