Function returns whatever response you ask it to.
| 14 | |
| 15 | // Function returns whatever response you ask it to. |
| 16 | type Function struct { |
| 17 | fnv1.UnimplementedFunctionRunnerServiceServer |
| 18 | |
| 19 | log logging.Logger |
| 20 | } |
| 21 | |
| 22 | // RunFunction runs the Function. |
| 23 | func (f *Function) RunFunction(_ context.Context, req *fnv1.RunFunctionRequest) (*fnv1.RunFunctionResponse, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected