Also, from auth examples ``` authentication { ...
# ktor
m
Also, from auth examples
Copy code
authentication {
    basic/digest("someName") { ... }
}
...
authenticate("someName")
why on earth not use static typing and symbol resolving? For instance:
Copy code
val someAuth = basicAuth { ... }
...
authenticate(someAuth) { ... }
o
Scope
m
authentication
is an extension to
Application
, so it's 'top-level', if compared to routes