From e07f7123ea98bf44c2f492f8bb0bee9dc0277ae0 Mon Sep 17 00:00:00 2001 From: Daniel Loureiro Date: Fri, 8 Nov 2024 04:16:30 +0000 Subject: [PATCH] :memo: docs(README): Enhance documentation and examples - Improved explanations for better understanding - Updated code snippets in `README.md` --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index aead101..730f7c4 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,12 @@ result = await pipeline.process(5) print(f"Result: {result}") ``` +**Output:** + +```plaintext +Result: 15 +``` + ## Middleware Functions With middlewares, you can include pre-processing and post-processing logic: