| 19 | } |
| 20 | |
| 21 | type wrapper struct { |
| 22 | fn func(context.Context, *plugin.GenerateRequest) (*plugin.GenerateResponse, error) |
| 23 | } |
| 24 | |
| 25 | func (w *wrapper) Generate(ctx context.Context, req *plugin.GenerateRequest) (*plugin.GenerateResponse, error) { |
| 26 | return w.fn(ctx, req) |
nothing calls this directly
no outgoing calls
no test coverage detected