15 lines
301 B
Swift
15 lines
301 B
Swift
//
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol MessageBackupManager {
|
|
|
|
/// Outputs file url the backup proto is located at.
|
|
func createBackup() async throws -> URL
|
|
|
|
func importBackup(fileUrl: URL) async throws
|
|
}
|