Skip to content

Instantly share code, notes, and snippets.

@JaleelNazir
Forked from rajohns08/BaseUrl.swift
Created March 29, 2017 14:04
Show Gist options
  • Save JaleelNazir/fd2c768b3a01b544c3949000bc66755d to your computer and use it in GitHub Desktop.
Save JaleelNazir/fd2c768b3a01b544c3949000bc66755d to your computer and use it in GitHub Desktop.
iOS / Swift - Base url class for getting from environment
class BaseURL {
class func getFromEnvironment() -> String {
#if DEBUG
return "http://192.168.1.126"
#else
return "https://judgecardx.com"
#endif
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment