AppDelegate.swift 436 B

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