(ctx context.Context, path string, args ...string)
| 30 | } |
| 31 | |
| 32 | func NewBuilder(ctx context.Context, path string, args ...string) Builder { |
| 33 | w := &wrapper{ |
| 34 | path: path, |
| 35 | args: args, |
| 36 | } |
| 37 | w.ctx = logger.WithLoggable(ctx, w) |
| 38 | return w |
| 39 | } |
| 40 | |
| 41 | type wrapper struct { |
| 42 | args []string |