fix funny moments

This commit is contained in:
Sergey Kopytov 2018-12-29 21:07:44 +05:00
parent 7c1f1a63dd
commit b09b859eda
2 changed files with 6 additions and 21 deletions

View File

@ -3,12 +3,7 @@ import LeadKit
import RxSwift
import RxCocoa
// MARK: - Constants
private enum Constants {
}
final class {{ module_info.name }}ViewController: BaseViewController<{{ module_info.name }}ViewModel> {
final class {{ module_info.name }}ViewController: BaseConfigurableController<{{ module_info.name }}ViewModel>, DisposeBagHolder {
// MARK: - Overrides
@ -61,11 +56,8 @@ final class {{ module_info.name }}ViewController: BaseViewController<{{ module_i
<#code#>
}
}
// MARK: - Actions
// MARK: - Action
private extension {{ module_info.name }}ViewController {
}
// MARK: - Constraints

View File

@ -1,12 +1,7 @@
import LeadKit
import RxSwift
// MARK: - Constants
private enum Constants {
}
final class {{ module_info.name }}ViewModel: BaseControllerViewModel {
final class {{ module_info.name }}ViewModel: BaseViewModel {
// MARK: - Properties
@ -14,21 +9,19 @@ final class {{ module_info.name }}ViewModel: BaseControllerViewModel {
// MARK: - Services
// MARK: - Life Cycle
}
//MARK: - Actions
// MARK: - Actions
extension {{ module_info.name }}ViewModel {
}
//MARK: - Public
// MARK: - Public
extension {{ module_info.name }}ViewModel {
}
//MARK: - Private
// MARK: - Private
private extension {{ module_info.name }}ViewModel {
}