| 69 | } |
| 70 | |
| 71 | void start_function(const TF_GrpcServer* server, void* context, |
| 72 | TF_Status* status) { |
| 73 | auto* server_data = static_cast<SomeServerData*>(context); |
| 74 | server_data->server_started = true; |
| 75 | TF_SetStatus(status, TF_OK, ""); |
| 76 | } |
| 77 | |
| 78 | void stop_function(const TF_GrpcServer* server, void* context, |
| 79 | TF_Status* status) { |
nothing calls this directly
no test coverage detected