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
11 changes: 10 additions & 1 deletion lib/ldclient-openfeature/provider.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,19 @@
module LaunchDarkly
module OpenFeature
class Provider
#
# Retrieve metadata information describing this provider.
#
# @return [::OpenFeature::SDK::Provider::ProviderMetadata]
#
attr_reader :metadata

#
# @return client [LaunchDarkly::LDClient]
# Access the underlying LaunchDarky client instance backing this provider.
#
# This is useful for accessing additional functionality not exposed by the provider.
#
# @return [LaunchDarkly::LDClient]
#
attr_reader :client

Expand Down