mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-28 14:10:44 +00:00

git-subtree-dir: submodules/lottie-ios git-subtree-mainline: 76e5a7fab6b0222780f346530cdbeeff96f3e105 git-subtree-split: d40e390fbe6d7ef3b417876af6fdce5e4d2aa335
18 lines
345 B
Objective-C
18 lines
345 B
Objective-C
//
|
|
// main.m
|
|
// lottie-ios
|
|
//
|
|
// Created by Brandon Withrow on 01/26/2017.
|
|
// Copyright (c) 2017 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
@import UIKit;
|
|
#import "LAAppDelegate.h"
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([LAAppDelegate class]));
|
|
}
|
|
}
|