extension/iOS (App)/SceneDelegate.swift
//
// SceneDelegate.swift
// iOS (App)
//
// Created by Jérôme Beau on 20/07/2024.
//
import UIKit
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
var window: UIWindow?
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let _ = (scene as? UIWindowScene) else { return }
}
}