Azure / azure-functions-durable-js

JavaScript library for using the Durable Functions bindings
https://www.npmjs.com/package/durable-functions
MIT License
128 stars 47 forks source link

Don't require durable client input in getClient() #444

Closed hossam-nasr closed 1 year ago

hossam-nasr commented 1 year ago

Before:

const client = df.getClient(context, clientInput);

Now:

const client = df.getClient(context);