yeet
This commit is contained in:
26
node_modules/expo-updates/ios/EXUpdates/AppLoader/EXUpdatesAsset.m
generated
vendored
Normal file
26
node_modules/expo-updates/ios/EXUpdates/AppLoader/EXUpdatesAsset.m
generated
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
// Copyright © 2019 650 Industries. All rights reserved.
|
||||
|
||||
#import <EXUpdates/EXUpdatesAsset.h>
|
||||
#import <EXUpdates/EXUpdatesUtils.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@implementation EXUpdatesAsset
|
||||
|
||||
- (instancetype)initWithKey:(NSString *)key type:(NSString *)type
|
||||
{
|
||||
if (self = [super init]) {
|
||||
_key = key;
|
||||
_type = type;
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (nullable NSString *)filename
|
||||
{
|
||||
return _key;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Reference in New Issue
Block a user