AppDelegate.swift 452 B

1234567891011121314151617181920
  1. //
  2. // AppDelegate.swift
  3. // TestSwift
  4. // Copyright (c) 2015 Damian Kołakowski. All rights reserved.
  5. //
  6. import Foundation
  7. import UIKit
  8. import SwifteriOS
  9. @UIApplicationMain
  10. class AppDelegate: UIResponder, UIApplicationDelegate {
  11. var window: UIWindow?
  12. var server: HttpServer?
  13. func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool {
  14. return true
  15. }
  16. }