Hey guys, I just migrated to Ktor `1.0.0-beta-1` a...
# ktor
s
Hey guys, I just migrated to Ktor
1.0.0-beta-1
and now all my usages of
ApplicationConfig
are generating warnings saying usage should be marked with
KtorExperimentalAPI
. What is the reason for this change ? Is there another way to use
ApplicationConfig
now ?
For example, I have
val config: ApplicationConfig = environment.config
in
Application.module()
which I am then passing to all of my services