burrow/Apple/App/BurrowApp.swift
Conrad Kramer 3c30a4b336 Enable SwiftLint inside of Xcode
This commit also fixes all linter warnings and errors.
2023-05-09 23:01:36 -04:00

17 lines
343 B
Swift

import NetworkExtension
import SwiftUI
@main
@MainActor
struct BurrowApp: App {
static let tunnel = Tunnel { manager, proto in
proto.serverAddress = "hackclub.com"
manager.localizedDescription = "Burrow"
}
var body: some Scene {
WindowGroup {
TunnelView(tunnel: Self.tunnel)
}
}
}