15 lines
290 B
Swift
15 lines
290 B
Swift
//
|
|
// LaunchScreenControllersProtocols.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Lizaveta Malinouskaya on 6/22/21.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol LaunchScreenControllerOutput: AnyObject {
|
|
func viewIsReady()
|
|
func agreeClick()
|
|
}
|