nextcloud-desktop/shell_integration/MacOSX/NextcloudIntegration/desktopclient/main.m
Andy Scherzinger 5fe94ea149 docs(reuse): Migrate to SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2025-05-07 09:28:53 +02:00

17 lines
408 B
Objective-C

//
// main.m
// desktopclient
//
// SPDX-FileCopyrightText: 2015 ownCloud GmbH
// SPDX-License-Identifier: GPL-2.0-or-later
//
// This is fake application bundle with the same bundle ID as the real desktop client.
// Xcode needs a wrapping application to allow the extension to be debugged.
#import <Cocoa/Cocoa.h>
int main(int argc, const char * argv[]) {
return NSApplicationMain(argc, argv);
}