1package interfaces
 2
 3// RandomIntegerBoundary is the struct for random integer boundaries
 4type RandomIntegerBoundary struct {
 5	Start int
 6	End   int
 7}
 8
 9// RandomFloatBoundary is the struct for random float boundaries
10type RandomFloatBoundary struct {
11	Start float64
12	End   float64
13}
14
15var (
16	DefaultIntBoundary   = RandomIntegerBoundary{Start: 0, End: 100}
17	DefaultFloatBoundary = RandomFloatBoundary{Start: 0, End: 100}
18)