UNPKG

@velas/account-agent

Version:

sdk

14 lines (10 loc) 279 B
/* * Bind the session */ async function bindSession(next) { if (this.interaction.session && this.interaction.session.op_key ) { this.interaction.session = new this.provider.Session(this.interaction.session); } await next(); } export default bindSession;