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.

27 lines
454 B

6 years ago
  1. //
  2. // MainPresenter.swift
  3. //
  4. //
  5. // Created by shishir sapkota
  6. //
  7. import Foundation
  8. class MainPresenter: MainInteractorOutput {
  9. // MARK: Properties
  10. weak var view: MainViewInterface?
  11. var interactor: MainInteractorInput?
  12. var wireframe: MainWireframeInput?
  13. // MARK: Main module interface
  14. // MARK: Main interactor output interface
  15. // MARK: Converting entities
  16. }
  17. extension MainPresenter: MainModuleInterface {
  18. }