]> git.r.bdr.sh - rbdr/junction/blame_incremental - safari/Junction/AppDelegate.swift
Add safari code
[rbdr/junction] / safari / Junction / AppDelegate.swift
... / ...
CommitLineData
1//
2// AppDelegate.swift
3// Junction
4//
5// Created by Ruben Beltran del Rio on 9/13/23.
6//
7
8import Cocoa
9
10@main
11class AppDelegate: NSObject, NSApplicationDelegate {
12
13 func applicationDidFinishLaunching(_ notification: Notification) {
14 // Override point for customization after application launch.
15 }
16
17 func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
18 return true
19 }
20
21}