You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
420 B

6 years ago
5 years ago
  1. //
  2. // MainInteractor.swift
  3. //
  4. //
  5. // Created by shishir sapkota
  6. //
  7. import Foundation
  8. class MainInteractor: MainInteractorInput {
  9. // MARK: Properties
  10. weak var output: MainInteractorOutput?
  11. private let service: MainServiceType
  12. // MARK: Initialization
  13. init(service: MainServiceType) {
  14. self.service = service
  15. }
  16. // MARK: Main interactor input interface
  17. // MARK: Converting entities
  18. }