diff options
Diffstat (limited to 'vendor/github.com/spf13/viper/internal/features')
| -rw-r--r-- | vendor/github.com/spf13/viper/internal/features/bind_struct.go | 5 | ||||
| -rw-r--r-- | vendor/github.com/spf13/viper/internal/features/bind_struct_default.go | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/spf13/viper/internal/features/bind_struct.go b/vendor/github.com/spf13/viper/internal/features/bind_struct.go new file mode 100644 index 0000000..89302c2 --- /dev/null +++ b/vendor/github.com/spf13/viper/internal/features/bind_struct.go @@ -0,0 +1,5 @@ +//go:build viper_bind_struct + +package features + +const BindStruct = true diff --git a/vendor/github.com/spf13/viper/internal/features/bind_struct_default.go b/vendor/github.com/spf13/viper/internal/features/bind_struct_default.go new file mode 100644 index 0000000..edfaf73 --- /dev/null +++ b/vendor/github.com/spf13/viper/internal/features/bind_struct_default.go @@ -0,0 +1,5 @@ +//go:build !viper_bind_struct + +package features + +const BindStruct = false |
