From cf8d9abfbe56537dbbf5087deb82ac37c93126e6 Mon Sep 17 00:00:00 2001 From: Fabrizio Demaria Date: Thu, 28 Mar 2024 16:06:33 +0100 Subject: [PATCH] Update README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 969ba75e..aaa25f5d 100644 --- a/README.md +++ b/README.md @@ -37,16 +37,18 @@ In the dependencies section of Package.swift add: and in the target dependencies section add: ```swift .product(name: "ConfidenceProvider", package: "confidence-openfeature-provider-swift"), +.product(name: "Confidence", package: "confidence-openfeature-provider-swift"), ``` ## Usage ### Import Modules -Import the `ConfidenceProvider` and `OpenFeature` modules +Import the `ConfidenceProvider`, the `Confidence` and the `OpenFeature` modules ```swift import ConfidenceProvider +import Confidence import OpenFeature ```