class Natrium {
enum Environment: String {
case staging = "Staging"
case production = "Production"
}
enum Configuration: String {
case debug = "Debug"
case release = "Release"
}
class Config {
static let domain: String = https://api.domain.com
}
}
It should be Swift String with double quote "":
class Natrium {
class Config {
static let domain: String = "https://api.domain.com"
}
}
I have some environment variables for CI but Natrium not generate them as Swift String.
.env file:
natrium:
Natrium.swift:
It should be Swift String with double quote "":