Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
Signed-off-by: odubajDT <ondrej.dubaj@dynatrace.com>
  • Loading branch information
odubajDT committed Apr 5, 2023
1 parent 06a7bd8 commit e73ef7d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions core/pkg/eval/ievaluator.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ import (
"google.golang.org/protobuf/types/known/structpb"
)

const FlagdProviderName = "flagd"
const FeatureFlagReasonKeyName = "feature_flag.reason"
const ExceptionTypeKeyName = "exception.type"
const ExceptionTypeKey = attribute.Key(ExceptionTypeKeyName)
const FeatureFlagReasonKey = attribute.Key(FeatureFlagReasonKeyName)
const (
FlagdProviderName = "flagd"
FeatureFlagReasonKeyName = "feature_flag.reason"
ExceptionTypeKeyName = "exception.type"
ExceptionTypeKey = attribute.Key(ExceptionTypeKeyName)
FeatureFlagReasonKey = attribute.Key(FeatureFlagReasonKeyName)
)

type AnyValue struct {
Value interface{}
Expand Down

0 comments on commit e73ef7d

Please sign in to comment.