| 827 | } |
| 828 | |
| 829 | type updateFilesResponse struct { |
| 830 | TXId int64 `json:"TXId"` |
| 831 | // XXX: I'm not sure about the type here |
| 832 | UpdateFailedFiles map[string]string `json:"UpdateFailedFiles"` |
| 833 | UpdateSuccFiles []string `json:"UpdateSuccFiles"` |
| 834 | } |
| 835 | |
| 836 | func (s *server) updateFiles(ctx context.Context, req *updateFilesRequest) (*updateFilesResponse, error) { |
| 837 | // Theoretically, the flow here is something like: |
nothing calls this directly
no outgoing calls
no test coverage detected