From 09a07ad373ac6127c481836bbada61da6d6f3a99 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Mon, 17 Apr 2023 00:23:49 +0200 Subject: [PATCH] Updated a small description of the `Persistence` library in the README file. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c45716b..2889997 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,4 @@ Currently, this package contains the following libraries: * `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); * `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); +* `Persistence`: protocols, extensions and a ready-to-use fetcher class to simplify the building of the **CoreData** persistence layer;