cake_wallet/cw_zano/ios/Classes/CwHavenPlugin.m
2023-10-02 14:17:35 +00:00

15 lines
542 B
Objective-C

#import "CwZanoPlugin.h"
#if __has_include(<cw_zano/cw_zano-Swift.h>)
#import <cw_zano/cw_zano-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 "cw_zano-Swift.h"
#endif
@implementation CwZanoPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftCwZanoPlugin registerWithRegistrar:registrar];
}
@end