For Ktor client we are using `HttpClient.config` t...
# ktor
t
For Ktor client we are using
HttpClient.config
to create multiple scoped clients with things like auth or default requests scoped to them. First, is this best practice/ok? From previous experience using OkHttp I believe this was useful for using a better sharing of resources but I am not sure if that pattern internally copies over to Ktor. Second do I need to explicitly close each child httpClient or are they using shared resources?