I want to store user/conversation specific data for a telegram bot. Any ideas on how to do this? There is some sensitive data that only the user should have access to so I’m hesitant to store it in my db and would rather store it somewhere more local. I thought about storing it in a message or something and keeping track of the id, but I’m hoping there’s a better way to do it. I’m using the Node.js node-telegram-bot-api npm package. Thanks!