| 368 | type getFilesMetaResponse []getFilesMetaResponseSingle |
| 369 | |
| 370 | type getFilesMetaResponseSingle struct { |
| 371 | FilePath string `json:"FilePath"` |
| 372 | Checksum string `json:"Checksum"` |
| 373 | LastModified int64 `json:"LastModified"` |
| 374 | Size int64 `json:"Size"` |
| 375 | Txid int64 `json:"Txid"` |
| 376 | |
| 377 | Error string `json:"Error,omitempty"` |
| 378 | } |
| 379 | |
| 380 | func (s *server) getFilesMeta(ctx context.Context, req *getFilesMetaRequest) (*getFilesMetaResponse, error) { |
| 381 | var fIDs []db.FileID |
nothing calls this directly
no outgoing calls
no test coverage detected