Multiple Handlers
You can also have an infinite amount of handlers on a single route, such as:
app.get('/', (c) => {
// do something
}, (c) => {
// ...
})
If you set a response body but want to execute the next handler, you must call the next()
method.
app.get('/', (c, next) => {
next()
}, (c) => {
// ...
})