From 4febf3d87747bb882f4e296481ef0df0141e2736 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 26 Sep 2025 16:48:53 -0400 Subject: [PATCH] struct rename --- lazy.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lazy.go b/lazy.go index 9195290..51fa3f9 100644 --- a/lazy.go +++ b/lazy.go @@ -23,14 +23,14 @@ type MockResults struct { Rows [][]driver.Value } -type MockDetails struct { +type Config struct { Query string Example any Keys []any RowCount int } -func GenerateRandomResults(m MockDetails) (*MockResults, error) { +func GenerateRandomResults(m Config) (*MockResults, error) { if m.Example == nil { return nil, errors.New("example value cannot be nil") }