mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 11:56:48 +00:00
23 lines
620 B
Kotlin
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()
|
||
|
|
}
|