How to add Koin to Ktor project
I am trying to install "Koin" for DI. I have added the Koin dependency to my gradle but it doesn't seem to install.
implementation("io.insert-koin
koin core3.2")
implementation("io.insert-koin
koin ktor3.2")
This is my plugin method
fun Application.configureDependencyInjection(){
install(Koin) {
/*
My modules are meant to go in here.
*/
}
}
However, I keep getting this error: "Unresolved reference: Koin"