mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
6dad778498
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
17 lines
414 B
Swift
17 lines
414 B
Swift
//
|
|
// FPUIExtensionCommunicationProtocol.swift
|
|
// FileProviderExt
|
|
//
|
|
// Created by Claudio Cambra on 21/2/24.
|
|
//
|
|
|
|
import FileProvider
|
|
import NextcloudKit
|
|
|
|
let fpUiExtensionServiceName = NSFileProviderServiceName(
|
|
"com.nextcloud.desktopclient.FPUIExtensionService"
|
|
)
|
|
|
|
@objc protocol FPUIExtensionService {
|
|
func shares(forItemIdentifier itemIdentifier: NSFileProviderItemIdentifier) async -> [NKShare]?
|
|
}
|