From 1618a8d8410eaccd710c06803ca0aa0372374f23 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 21 Mar 2024 21:45:51 +0100 Subject: [PATCH] Defined the FeedListCoordination protocol in the Feed framework. --- .../Coordination/FeedListCoordination.swift | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Frameworks/Feed/Bundle/Sources/Coordinators/Coordination/FeedListCoordination.swift diff --git a/Frameworks/Feed/Bundle/Sources/Coordinators/Coordination/FeedListCoordination.swift b/Frameworks/Feed/Bundle/Sources/Coordinators/Coordination/FeedListCoordination.swift new file mode 100644 index 0000000..ffb5cf8 --- /dev/null +++ b/Frameworks/Feed/Bundle/Sources/Coordinators/Coordination/FeedListCoordination.swift @@ -0,0 +1,16 @@ +// +// FeedListCoordination.swift +// ReviewsFeed +// +// Created by Javier Cicchelli on 21/03/2024. +// Copyright © 2024 Röck+Cöde. All rights reserved. +// + +import Foundation + +protocol FeedListCoordination: AnyObject { + + // MARK: Functions + func open(_ item: Review) + +}