flutter_openssl_crypto/ios/Classes/FlutterOpensslCryptoPlugin.m

16 lines
659 B
Mathematica
Raw Normal View History

2021-04-19 18:33:39 +00:00
#import "FlutterOpensslCryptoPlugin.h"
#if __has_include(<flutter_openssl_crypto/flutter_openssl_crypto-Swift.h>)
#import <flutter_openssl_crypto/flutter_openssl_crypto-Swift.h>
#else
// Support project import fallback if the generated compatibility header
// is not copied when this plugin is created as a library.
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
#import "flutter_openssl_crypto-Swift.h"
#endif
@implementation FlutterOpensslCryptoPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftFlutterOpensslCryptoPlugin registerWithRegistrar:registrar];
}
@end