package com.nguyenthanhtung.viettelekycsdk import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.bridge.ReactContextBaseJavaModule class RNViettelEkycSdkModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext) { override fun getName() = "RNViettelEkycSdkModule" override fun getConstants(): MutableMap { return hashMapOf("count" to 1) } }