Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Sources/Vexil/Observability/FlagWigwag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ public struct FlagWigwag<Output>: Sendable where Output: FlagValue {
/// The default value for this flag
public let defaultValue: Output

/// The current resolved value of this flag
public var value: Output {
lookup.value(for: keyPath) ?? defaultValue
}

/// A human readable name for the flag. Only visible in flag editors like Vexillographer.
public let name: String

Expand Down
Loading