Skip to content

Instantly share code, notes, and snippets.

@tbelmega
Last active March 17, 2019 01:50
Show Gist options
  • Save tbelmega/cdd597d4ceb38bca8394e8235abb9f68 to your computer and use it in GitHub Desktop.
Save tbelmega/cdd597d4ceb38bca8394e8235abb9f68 to your computer and use it in GitHub Desktop.
class PastaAppConfig(
val env0BaseURL: String,
val env1Name: String,
val env1BaseURL: String
) {
fun getBaseUrl(targetEnvironment: String): String {
return if (targetEnvironment === env1Name) env1BaseURL
else env0BaseURL
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment