lets say I didnt want to pass the ServerResponse throughout my program into every function. For example, what if the res.session was storing the id of the current user. This is used often, so I wouldnt want this passed through each function. How do I store this session info globally or at least in a way I can access it easily without passing it into every function that requires it? Assuming there's multiple users using the site.