aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuardmacOS/AppDelegate.swift
diff options
context:
space:
mode:
Diffstat (limited to 'WireGuard/WireGuardmacOS/AppDelegate.swift')
-rw-r--r--WireGuard/WireGuardmacOS/AppDelegate.swift22
1 files changed, 22 insertions, 0 deletions
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
+ }
+
+
+}
+