Files
Pulse/App/Shared/Mocks/MockStoreConfiguration.swift
2022-08-07 20:09:53 -04:00

17 lines
444 B
Swift
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// The MIT License (MIT)
//
// Copyright (c) 20202022 Alexander Grebenyuk (github.com/kean).
#if DEBUG || PULSE_DEMO
enum MockStoreConfiguration {
/// Delay logs with random intervals.
static let isDelayingLogs = true
/// Add the same logs indefinitely with an interval.
static let isIndefinite = false
/// If true uses the default store that support remote logging.
static let isUsingDefaultStore = true
}
#endif