NtoTeamTask

This commit is contained in:
2025-12-12 09:36:38 +07:00
parent 945b9d347d
commit e5f945ef4c
70 changed files with 2642 additions and 350 deletions

View File

@@ -0,0 +1,16 @@
package ru.myitschool.work
import android.app.Application
import ru.myitschool.work.comp.di.appModule
import org.koin.android.ext.koin.androidContext
import org.koin.core.context.startKoin
class Application : Application(){
override fun onCreate() {
super.onCreate()
startKoin {
androidContext(this@Application)
modules(appModule)
}
}
}