what does `@Suppress("unused")` do here ```@Suppr...
# ktor
h
what does
@Suppress("unused")
do here
Copy code
@Suppress("unused") // Referenced in application.conf
fun Application.module()
a
It just supresses warning produced in compiler which is produced when the function is not used anywhere in the application, in my case there's no warning in the compiler.