23 lines
443 B
Swift
23 lines
443 B
Swift
//
|
|
// MenuServerModulePresenter.swift
|
|
// Privado
|
|
//
|
|
// Created by Viktor on 10.08.2020.
|
|
// Copyright © 2020 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class MenuServerModulePresenter: MenuServerModuleOutput {
|
|
|
|
var output: ServersModuleOutput?
|
|
|
|
init(output: ServersModuleOutput?) {
|
|
self.output = output
|
|
}
|
|
|
|
func openMenu() {
|
|
self.output?.navigate(to: .preference(tab: nil))
|
|
}
|
|
}
|