Files
XcodeGen/Fixtures/TestProject/App_iOS/AppDelegate.swift
T
Yonas Kolb 17b32e6a1a refactored TestProject Fixture
- renamed things
- made framework multiplatform
- integrate carthage
2017-10-29 23:17:16 +01:00

26 lines
551 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()
return true
}
}