blob: e8cc6a0564e574a8599262cd1341e97baed8892e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// Migration.swift
// MullvadVPN
//
// Created by Sajad Vishkai on 2022-11-18.
// Copyright © 2022 Mullvad VPN AB. All rights reserved.
//
import Foundation
public protocol Migration {
func migrate(
with store: SettingsStore,
parser: SettingsParser,
completion: @escaping @Sendable (Error?) -> Void
)
}
|