mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-29 04:08:54 +03:00
ff9e344810
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
18 lines
444 B
Swift
18 lines
444 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 credentials() async -> NSDictionary
|
|
func itemServerPath(identifier: NSFileProviderItemIdentifier) async -> NSString?
|
|
}
|