Defined the FeedListCoordination protocol in the Feed framework.

This commit is contained in:
Javier Cicchelli 2024-03-21 21:45:51 +01:00
parent af6d4db807
commit 1618a8d841

View File

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