CxLLM-SAFARI/macOS (App)/AppDelegate.m
CxAI Ops 5b384c5baa
Some checks are pending
ci / validate (push) Waiting to run
chore: initial commit (Phase 3 scaffold)
2026-05-16 10:52:05 -05:00

21 lines
386 B
Objective-C

//
// AppDelegate.m
// macOS (App)
//
// Created by Stephen Carter on 4/22/26.
//
#import "AppDelegate.h"
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)notification {
// Override point for customization after application launch.
}
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {
return YES;
}
@end