| 12 | ) |
| 13 | |
| 14 | type Handler interface { |
| 15 | Generate(context.Context, *plugin.GenerateRequest) (*plugin.GenerateResponse, error) |
| 16 | |
| 17 | Invoke(ctx context.Context, method string, args any, reply any, opts ...grpc.CallOption) error |
| 18 | NewStream(ctx context.Context, desc *grpc.StreamDesc, method string, opts ...grpc.CallOption) (grpc.ClientStream, error) |
| 19 | } |
| 20 | |
| 21 | type wrapper struct { |
| 22 | fn func(context.Context, *plugin.GenerateRequest) (*plugin.GenerateResponse, error) |
no outgoing calls
no test coverage detected