fix funny moments
This commit is contained in:
parent
7c1f1a63dd
commit
b09b859eda
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
}
|
||||
Loading…
Reference in New Issue