21 lines
485 B
Swift
21 lines
485 B
Swift
//
|
|
// ConnectionStatusModuleBuilder.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Zhandos Bolatbekov on 08.07.2021.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
final class ConnectionStatusModuleBuilder {
|
|
|
|
static func build() -> UIView {
|
|
|
|
let presenter = ConnectionStatusViewPresenter(session: Session.shared())
|
|
let view = ConnectionStatusViewIPAD(output: presenter)
|
|
presenter.viewInput = view
|
|
return view
|
|
}
|
|
}
|