From 935285a9f3cc187f6cf078b7d3c254b6bb5ed166 Mon Sep 17 00:00:00 2001 From: jake Date: Tue, 30 Sep 2025 17:39:15 -0400 Subject: [PATCH] testing without db tags --- lazy.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lazy.go b/lazy.go index 525c23f..9e7c708 100644 --- a/lazy.go +++ b/lazy.go @@ -149,11 +149,11 @@ func RandomStruct(c StructConfig) (*StructMock, error) { filled = reflect.Append(filled, reflect.ValueOf(c.Example)) for y := 0; y < maxFieldCount; y++ { field := retType.Field(y) - dbTag := field.Tag.Get(DB_TAG) - // no db tag, we skip - if dbTag == "" { - continue - } + // dbTag := field.Tag.Get(DB_TAG) + // // no db tag, we skip + // if dbTag == "" { + // continue + // } //get random value nv := kindToRandom(field)