Sanitised

This commit is contained in:
Neil Alexander 2020-07-19 14:20:15 +01:00
commit 52ca049b50
39 changed files with 3283 additions and 0 deletions

View file

@ -0,0 +1,21 @@
import UIKit
#if os(iOS)
class PlatformAppDelegate: UIResponder, UIApplicationDelegate {}
#elseif os(OSX)
class PlatformAppDelegate: NSObject, NSApplicationDelegate {}
#endif
@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
}
}