ReadyRemitEnvironment

A configured space that includes infrastructure, settings, and data to support a specific stage of the development lifecycle

Definition

public enum ReadyRemitEnvironment: Sendable {
    case production
    case sandbox
}

Cases

CaseDescription
productionThe live environment where real users interact with your application
sandboxA safe, isolated environment designed for development, testing, and experimentation

Default

public extension ReadyRemitEnvironment {
    static let `default`: Self = .sandbox
}
private let environment: ReadyRemitEnvironment = .default

Sample Usage

private let environment: ReadyRemitEnvironment = .sandbox