e14b53193f
One step closer to 1.0. Changes include: - Refactor the API - Make image source non-optional - Use submodule for Runes dependency - Add specs - Remove Runes framework dependency
12 lines
291 B
Swift
Executable File
12 lines
291 B
Swift
Executable File
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
|
|
return true
|
|
}
|
|
}
|