mirror of
https://github.com/yggdrasil-network/yggdrasil-ios.git
synced 2025-04-28 06:05:09 +03:00
15 lines
511 B
Swift
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
|
|
}
|
|
}
|
|
|