mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 14:58:11 +00:00
12 lines
218 B
Text
12 lines
218 B
Text
/*
|
|
* Copyright (c) 2023, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, char const* argv[])
|
|
{
|
|
return NSApplicationMain(argc, argv);
|
|
}
|