(context.Context)
| 114 | type ExecInterface[T any] interface { |
| 115 | Scan(ctx context.Context, r interface{}) error |
| 116 | First(context.Context) (T, error) |
| 117 | Last(ctx context.Context) (T, error) |
| 118 | Take(context.Context) (T, error) |
| 119 | Find(ctx context.Context) ([]T, error) |
no outgoing calls