yggdrasil-ios/Yggdrasil Network iOS/Application/AppDelegate.swift
Neil Alexander 291b12b785
Some SwiftUI
2023-06-20 14:22:52 +01:00

15 lines
511 B
Swift

import UIKit
@UIApplicationMain
class AppDelegate: CrossPlatformAppDelegate {
var window: UIWindow?
let configDir = NSSearchPathForDirectoriesInDomains(.applicationSupportDirectory, .userDomainMask, true)[0]
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch
self.vpnTunnelProviderManagerInit()
return true
}
}