From ce45da66f3e6ad7a83a0970e7d71ff35864bf7be Mon Sep 17 00:00:00 2001 From: destel Date: Sun, 21 Jul 2024 12:10:47 +0300 Subject: [PATCH] go get -u --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 190b171..6bdc4cf 100644 --- a/README.md +++ b/README.md @@ -45,10 +45,6 @@ and expressive API. The introduction of generics in Go 1.18 opened the door to c operations on channels, providing a natural way to achieve this goal. -## Installation -```bash -go get github.com/destel/rill -``` ## Example Usage @@ -91,6 +87,10 @@ func main() { ``` +## Installation +```bash +go get -u github.com/destel/rill +``` ## Testing Strategy @@ -102,8 +102,6 @@ Rill has a test coverage of over 95%, with testing focused on: - - ## Design Philosophy At the heart of rill lies a simple yet powerful concept: operating on channels of wrapped values, encapsulated by the **Try** container. This allows to propagate both values and errors through the pipeline, ensuring that errors are handled correctly at each stage.