//
//  Bundle+ReactNative.swift
//  blaze-rtn-sdk
//
//  Created by Reuven Levitsky on 20/11/2023.
//

import Foundation

extension Foundation.Bundle {
    
    /// Since BlazeSDK is a framework, the bundle for classes within this module can be used directly.
    static let reactNative: Bundle = {
        let bundleRelativePath = Bundle.main.path(forResource: "blaze-rtn-sdk-bundle",
                                                  ofType: "bundle")!
        let bundle = Bundle(path: bundleRelativePath)!
        return bundle
    }()
    
}
