( ctx context.Context, req *connect.Request[apiv2.GetLogsRequest], )
| 55 | type service struct{} |
| 56 | |
| 57 | func (s *service) GetLogs( |
| 58 | ctx context.Context, |
| 59 | req *connect.Request[apiv2.GetLogsRequest], |
| 60 | ) ( |
| 61 | *connect.Response[apiv2.GetLogsResponse], |
| 62 | error, |
| 63 | ) { |
| 64 | return nil, ErrNeedsImplementation |
| 65 | } |
| 66 | |
| 67 | func (s *service) PutLogs( |
| 68 | ctx context.Context, |
nothing calls this directly
no outgoing calls
no test coverage detected