mirror of
https://github.com/kean/Pulse.git
synced 2026-05-30 21:07:33 +00:00
16 lines
384 B
Swift
16 lines
384 B
Swift
// The MIT License (MIT)
|
||
//
|
||
// Copyright (c) 2020–2021 Alexander Grebenyuk (github.com/kean).
|
||
|
||
import Foundation
|
||
|
||
public struct ConsoleConfiguration {
|
||
public var isStoreSharingEnabled: Bool
|
||
|
||
public static let `default` = ConsoleConfiguration()
|
||
|
||
public init(isStoreSharingEnabled: Bool = true) {
|
||
self.isStoreSharingEnabled = isStoreSharingEnabled
|
||
}
|
||
}
|