All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.devslash.UrlProviders.kt Maven / Gradle / Ivy

There is a newer version: 0.26.2
Show newest version
package net.devslash

fun  defaultUrlProvider(url: String, data: RequestData): String {
  if (url.contains("!")) {
    return data.visit(ReplacingString(url))
  }
  return url
}

fun  getUrlProvider(call: Call): URLProvider {
  if (call.urlProvider == null) {
    return ::defaultUrlProvider
  }
  return call.urlProvider!!
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy