core/internal/domain/domaintest/utils.go
Dawid Wysokiński 32859aae9f
All checks were successful
ci/woodpecker/push/govulncheck Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
chore: bump deps (#12)
Reviewed-on: twhelp/corev3#12
2024-03-01 07:15:06 +00:00

8 lines
123 B
Go

package domaintest
import "github.com/brianvoe/gofakeit/v7"
func RandID() int {
return gofakeit.IntRange(1, 10000000)
}