mirror of
https://github.com/MessageKit/MessageKit.git
synced 2026-02-06 19:03:19 +00:00
f11462ce22
* Dump former MessageKit repo contents * Update MessageKit.podspec
31 lines
643 B
Swift
31 lines
643 B
Swift
//
|
|
// Created by Jesse Squires
|
|
// http://www.jessesquires.com
|
|
//
|
|
//
|
|
// Documentation
|
|
// http://messagekit.github.io
|
|
//
|
|
//
|
|
// GitHub
|
|
// https://github.com/MessageKit/MessageKit
|
|
//
|
|
//
|
|
// License
|
|
// Copyright (c) 2016-present Jesse Squires
|
|
// Released under an MIT license: http://opensource.org/licenses/MIT
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
final class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication,
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
|
|
return true
|
|
}
|
|
}
|