1
0
Fork 0
happy-cat/src/nativeMain/kotlin/fi/schro/Main.kt

22 lines
503 B
Kotlin
Raw Normal View History

2022-02-20 11:21:11 -05:00
/*
* Copyright (c) 2022 Florian Schrofner
*
* 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/.
*/
2022-02-12 09:28:46 -05:00
package fi.schro
import fi.schro.di.mainModule
import fi.schro.ui.HappyCatCommand
import org.koin.core.context.startKoin
fun main(args: Array<String>) {
startKoin {
modules(mainModule)
}
HappyCatCommand()
.main(args)
2022-02-12 09:28:46 -05:00
}