mobile-wallet/cmp-shared/src/nativeMain/kotlin/org/mifospay/shared/MifosViewController.kt
Hekmatullah fd3fc4c302
chore: rename mifospay-* modules to cmp-* (#1893)
Co-authored-by: Sk Niyaj Ali <niyaj639@gmail.com>
2025-07-28 12:03:45 +05:30

23 lines
620 B
Kotlin

/*
* Copyright 2024 Mifos Initiative
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
* See https://github.com/openMF/mobile-wallet/blob/master/LICENSE.md
*/
package org.mifospay.shared
import androidx.compose.ui.window.ComposeUIViewController
import org.mifospay.shared.di.initKoin
@Suppress("ktlint:standard:function-naming")
fun MifosViewController() = ComposeUIViewController(
configure = {
initKoin()
},
) {
MifosPaySharedApp()
}