protoncr / tourmaline

Simple Telegram bot library for Crystal
https://tourmaline.dev
MIT License
158 stars 38 forks source link

Experimental support for Middleware #38

Closed watzon closed 3 years ago

watzon commented 3 years ago

This PR adds experimental support for Middleware objects. They get run sequentially on each update. In addition a context property has been added to Update which allows values to be added and removed dynamically.

Middleware can be added with the new Client#use method.

bot.use(MyNewMiddleware.new)