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) + +}