From 6960aecc25400320adee1b8802a86839326e15b6 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 5 Feb 2026 00:37:32 +0100 Subject: Engage! --- .../go-faker/faker/v4/pkg/interfaces/number.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 vendor/github.com/go-faker/faker/v4/pkg/interfaces/number.go (limited to 'vendor/github.com/go-faker/faker/v4/pkg/interfaces/number.go') diff --git a/vendor/github.com/go-faker/faker/v4/pkg/interfaces/number.go b/vendor/github.com/go-faker/faker/v4/pkg/interfaces/number.go new file mode 100644 index 0000000..59dddfb --- /dev/null +++ b/vendor/github.com/go-faker/faker/v4/pkg/interfaces/number.go @@ -0,0 +1,18 @@ +package interfaces + +// RandomIntegerBoundary is the struct for random integer boundaries +type RandomIntegerBoundary struct { + Start int + End int +} + +// RandomFloatBoundary is the struct for random float boundaries +type RandomFloatBoundary struct { + Start float64 + End float64 +} + +var ( + DefaultIntBoundary = RandomIntegerBoundary{Start: 0, End: 100} + DefaultFloatBoundary = RandomFloatBoundary{Start: 0, End: 100} +) -- cgit v1.2.3