blob: 739c6d45525c70a05f0e14f16001f788a6e27c10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// SettingsDataSourceDelegate.swift
// MullvadVPN
//
// Created by pronebird on 19/10/2021.
// Copyright © 2021 Mullvad VPN AB. All rights reserved.
//
import UIKit
protocol SettingsDataSourceDelegate: AnyObject {
func settingsDataSource(_ dataSource: SettingsDataSource, didSelectItem item: SettingsDataSource.Item)
}
|