From f6772dc3536698c7d1484ccf5811a4e3dd07ab8c Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Tue, 25 Dec 2018 18:33:28 +0530 Subject: macOS: Add WireGuardmacOS target Signed-off-by: Roopesh Chander --- WireGuard/WireGuardmacOS/AppDelegate.swift | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 WireGuard/WireGuardmacOS/AppDelegate.swift (limited to 'WireGuard/WireGuardmacOS/AppDelegate.swift') diff --git a/WireGuard/WireGuardmacOS/AppDelegate.swift b/WireGuard/WireGuardmacOS/AppDelegate.swift new file mode 100644 index 0000000..fb0094d --- /dev/null +++ b/WireGuard/WireGuardmacOS/AppDelegate.swift @@ -0,0 +1,22 @@ +// SPDX-License-Identifier: MIT +// Copyright © 2018 WireGuard LLC. All Rights Reserved. + +import Cocoa + +@NSApplicationMain +class AppDelegate: NSObject, NSApplicationDelegate { + + @IBOutlet weak var window: NSWindow! + + + func applicationDidFinishLaunching(_ aNotification: Notification) { + // Insert code here to initialize your application + } + + func applicationWillTerminate(_ aNotification: Notification) { + // Insert code here to tear down your application + } + + +} + -- cgit v1.2.3-59-g8ed1b