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.

28 lines
526 B

  1. //
  2. // MainPresenter.swift
  3. // Sipradi
  4. //
  5. // Created by bibek timalsina on 5/26/17.
  6. // Copyright © 2017 Ekbana. All rights reserved.
  7. //
  8. import Foundation
  9. class MainPresenter: MainInteractorOutput {
  10. // MARK: Properties
  11. weak var view: MainViewInterface?
  12. var interactor: MainInteractorInput?
  13. var wireframe: MainWireframeInput?
  14. // MARK: Main module interface
  15. // MARK: Main interactor output interface
  16. // MARK: Converting entities
  17. }
  18. extension MainPresenter: MainModuleInterface {
  19. }