Skip to content

Instantly share code, notes, and snippets.

@gamzeguven
Created March 24, 2020 19:42
Show Gist options
  • Save gamzeguven/86ed0d905efac561e81fddf5c3823f0f to your computer and use it in GitHub Desktop.
Save gamzeguven/86ed0d905efac561e81fddf5c3823f0f to your computer and use it in GitHub Desktop.
import Foundation
protocol HomeInteractorInterface {
func getTitle() -> HomeModel
}
class HomeInteractor { }
extension HomeInteractor: HomeInteractorInterface {
func getTitle() -> HomeModel {
return HomeModel(title: "Home VIPER")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment