diff --git a/db/gfdb/gfdb.go b/db/gfdb/gfdb.go index 8c22c1a..0c06dce 100644 --- a/db/gfdb/gfdb.go +++ b/db/gfdb/gfdb.go @@ -436,6 +436,7 @@ var ( ) type Gfdb interface { + GetAll(ctx context.Context, sql string, args ...any) (gdb.Result, error) Exec(ctx context.Context, sql string, args ...any) (sql.Result, error) Model(ctx context.Context, tableNameOrStruct ...any) *model Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) error