From 5cc4b2f3db3be69928892c8663ff3357bba8490a Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sun, 16 Apr 2023 20:41:24 +0200 Subject: [PATCH] Updated the README file with a small description of the "Communications" library. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2637a37..c45716b 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ This package contains the core building blocks that we, [Röck+Cöde](https://ro This package contains several libraries which a developer can also use in their own codebase, and these libraries are grouped by a certain concern or purpose. Currently, this package contains the following libraries: +* `Communications`: protocols, enumerations and a ready-to-use mock url class to build remote API services; +* `Coordination`: protocols to implement the [Coordinator pattern](https://khanlou.com/2015/01/the-coordinator/) and some ready-to-use platform-specific concrete routers; * `Core`: extensions we usually add to the base layer functionality and primitive types provided by the [Swift standard library](https://https://www.swift.org/documentation/#standard-library); -* `Coordination`: protocols to implement the [Coordinator pattern](https://khanlou.com/2015/01/the-coordinator/) and some ready-to-use platform-specific concrete routers; * `Dependencies`: a ready-to-use, simple [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection) mechanism that levers heavily on the [dynamic property wrappers](https://www.hackingwithswift.com/plus/intermediate-swiftui/creating-a-custom-property-wrapper-using-dynamicproperty) provided by the [Swift programming language](https://docs.swift.org/swift-book/documentation/the-swift-programming-language/properties/#Projecting-a-Value-From-a-Property-Wrapper);