Is there an easy way to enforce a rate-limit on a Ktor client? e.g. ```HttpClient { install(RateLi...
t
Is there an easy way to enforce a rate-limit on a Ktor client? e.g.
Copy code
HttpClient {
  install(RateLimit) {
    limit = 100.requestsPerSecond
  }
}
a
Unfortunately, no. You may find this plugin helpful.