30 lines
545 B
Swift
30 lines
545 B
Swift
//
|
|
// LaunchScreenPresenter.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Viktor on 09.12.2020.
|
|
// Copyright © 2020 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class LaunchScreenPresenter: LaunchScreenControllerOutput {
|
|
|
|
private let output: LaunchScreenModuleOutput?
|
|
|
|
init(output: LaunchScreenModuleOutput) {
|
|
self.output = output
|
|
}
|
|
|
|
// MARK: - LaunchScreenControllerOutput
|
|
|
|
func viewIsReady() {
|
|
|
|
}
|
|
|
|
func agreeClick() {
|
|
self.output?.noticeAccepted()
|
|
}
|
|
|
|
}
|