currently we could only apply global middlewares, in complicated applications, we might need to apply middlewares for different business, assume there are routes (/foo and '/bar') and middlewares (foo and bar), the usage could be:
app.Use('/foo', foo)
app.Use('/bar', bar)
currently we could only apply global middlewares, in complicated applications, we might need to apply middlewares for different business, assume there are routes (
/fooand '/bar') and middlewares (fooandbar), the usage could be: