How can i retrieve the state associated with a request? For instance: ``` ways = require( "ways" ) ways( "/save", function( req ) { console.log( "How to retrieve the state object here?", req ); } ); ways.go( "/save", "", { hi: true } ) ```
How can i retrieve the state associated with a request?
For instance: