Geen omschrijving

AppDelegate.swift 553B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // AppDelegate.swift
  3. // meetings_app
  4. //
  5. // Created by Dev Mac 1 on 06/04/2026.
  6. //
  7. import Cocoa
  8. @main
  9. class AppDelegate: NSObject, NSApplicationDelegate {
  10. func applicationDidFinishLaunching(_ aNotification: Notification) {
  11. // Insert code here to initialize your application
  12. }
  13. func applicationWillTerminate(_ aNotification: Notification) {
  14. // Insert code here to tear down your application
  15. }
  16. func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
  17. return true
  18. }
  19. }