blob: e14eb59530d066e6d2710b4fdf85a55a0bad6d8a (
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 © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
public protocol Migration {
func migrate(
with store: SettingsStore,
parser: SettingsParser,
completion: @escaping @Sendable (Error?) -> Void
)
}
|