mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
25 lines
640 B
Swift
25 lines
640 B
Swift
//
|
|
// AppDelegate.swift
|
|
// TestProject
|
|
//
|
|
// Created by Yonas Kolb on 19/7/17.
|
|
// Copyright © 2017 Yonas Kolb. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import Framework
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
|
|
// Override point for customization after application launch.
|
|
_ = FrameworkStruct()
|
|
// Standalone files added to project by path-to-file.
|
|
_ = standaloneHello()
|
|
return true
|
|
}
|
|
}
|