Is there a simple way of setting up a single dispatch route in Cowboy that allows multiple handlers such as: /base/add_something /base/remove_something
and have each of those actions services by a single handler that can differentiate them? All of the examples seem to map 1 handler to 1 dispatch, I would like to consolidate functionality if possible.