Nvd Client
constructor(connectTimeoutSeconds: Long = 10, readTimeoutSeconds: Long = 20, apiKey: String? = System.getenv("NVD_API_KEY"), client: OkHttpClient = OkHttpClient.Builder()
.connectTimeout(connectTimeoutSeconds, TimeUnit.SECONDS)
.readTimeout(readTimeoutSeconds, TimeUnit.SECONDS)
.build(), baseUrl: String = "https://services.nvd.nist.gov/rest/json/cves/2.0", requestDelayMs: Long = if (System.getenv("NVD_API_KEY") != null) 100 else 600)