Closed AdamRussak closed 1 year ago
you need to store conversation states for different users somewhere and check user`s state on every update, idk what python library did you use but its the same in aiogram
thank you! do you have some kind of documentation of example for me to go by?
here's a module that implements FSM in go, though I would recommend writing it yourself, you can use Redis(or similar key-value storage) to store chat_id as key and state as value Just check for a state of every event you process
i created some flow, but can't find how to bind it to a specific conversation flow
in python, there are many examples and "how-to"s to create a telegram conversation.
I am missing this. for example, the flow below works, but it isn't strict to a conversation flow.