Currently provider.ts maintains an array of conversations. I want to make my bot stateless. For bot should be able to read, write and update conversations in some persistent storage.
Please help.
You can create your own class that implements the provider interface and make your own method of storage. An example of this is here where we are using mongodb:
Currently provider.ts maintains an array of conversations. I want to make my bot stateless. For bot should be able to read, write and update conversations in some persistent storage. Please help.