Merge pull request #44 from TouchInstinct/feature/baseMVVM
remove redundant public
This commit is contained in:
commit
c75d737853
|
|
@ -27,19 +27,19 @@ public protocol ConfigurableController {
|
|||
|
||||
associatedtype ViewModelT
|
||||
|
||||
public var viewModel: ViewModelT { get }
|
||||
var viewModel: ViewModelT { get }
|
||||
|
||||
public func bindViews()
|
||||
func bindViews()
|
||||
|
||||
public func addViews()
|
||||
func addViews()
|
||||
|
||||
public func setAppearance()
|
||||
func setAppearance()
|
||||
|
||||
public func configureBarButtons()
|
||||
func configureBarButtons()
|
||||
|
||||
public func localize()
|
||||
func localize()
|
||||
|
||||
public func initialLoadView()
|
||||
func initialLoadView()
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -24,5 +24,5 @@ public protocol ModuleConfigurator {
|
|||
|
||||
associatedtype ViewControllerT
|
||||
|
||||
public func configure(input: ViewControllerT)
|
||||
func configure(input: ViewControllerT)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue