Hello i am attempting to implement rate limiting on my jester server
application and to do that i created a variable of type `OrderedTable` which
would keep track of the ip address of all computers requesting from the server
and would stop serving to theses computers if they exceed a certain limit. Now
my question is does jester provides a way to run a proc (that would check for
rate limit violations) on all api endpoints without having to call the function
on every single endpoint. all answers are welcome.