summaryrefslogtreecommitdiff
path: root/platform/ios/src/NSBundle+MGLAdditions.m
blob: 05d8f5c87c359208b988ad33809ab881804796e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "NSBundle+MGLAdditions.h"

#import "MGLAccountManager.h"

void mgl_linkBundleCategory() {}

@implementation NSBundle (MGLAdditions)

+ (instancetype)mgl_frameworkBundle
{
    return [self bundleForClass:[MGLAccountManager class]];
}

@end