All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.at.asitplus.wallet.por.Initializer.kt Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package at.asitplus.wallet.por

import at.asitplus.wallet.lib.LibraryInitializer

object Initializer {

    /**
     * A reference to this class is enough to trigger the init block
     */
    init {
        initWithVcLib()
    }

    /**
     * This has to be called first, before anything first, to load the
     * relevant classes of this library into the base implementations of vclib
     */
    fun initWithVcLib() {
        LibraryInitializer.registerExtensionLibrary(
            credentialScheme = PowerOfRepresentationScheme,
        )
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy