mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
When working on the Swift codebase, I noticed that running the formatter produced a massive diff. This PR re-formats the Swift code with `swift format . --recursive --in-place` and adds a CI check to enforce it going forward. Resolves: #9534 --------- Co-authored-by: Jamil Bou Kheir <jamilbk@users.noreply.github.com>
17 lines
245 B
Swift
17 lines
245 B
Swift
//
|
|
// main.swift
|
|
// (c) 2024 Firezone, Inc.
|
|
// LICENSE: Apache-2.0
|
|
//
|
|
|
|
import FirezoneKit
|
|
import Foundation
|
|
import NetworkExtension
|
|
|
|
// Entrypoint for the macOS app
|
|
autoreleasepool {
|
|
NEProvider.startSystemExtensionMode()
|
|
}
|
|
|
|
dispatchMain()
|