Skip to content

Commit

Permalink
Fix for indentations.
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahselek committed Jul 2, 2018
1 parent 10d17a3 commit 2ee212c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ protocol ___VARIABLE_viperModuleName___WireframeProtocol: class {
protocol ___VARIABLE_viperModuleName___PresenterProtocol: class {

var interactor: ___VARIABLE_viperModuleName___InteractorInputProtocol? { get set }

}

// MARK: InteractorProtocol
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ class ___VARIABLE_viperModuleName___Router: ___VARIABLE_viperModuleName___Wirefr
let view = ___VARIABLE_viperModuleName___ViewController(nibName: nil, bundle: nil)
let interactor = ___VARIABLE_viperModuleName___Interactor()
let router = ___VARIABLE_viperModuleName___Router()
let presenter = ___VARIABLE_viperModuleName___Presenter(interface: view,
interactor: interactor,
router: router)
let presenter = ___VARIABLE_viperModuleName___Presenter(interface: view, interactor: interactor, router: router)

view.presenter = presenter
interactor.presenter = presenter
Expand Down

0 comments on commit 2ee212c

Please sign in to comment.