(ctx context.Context, path string)
| 791 | } |
| 792 | |
| 793 | func (m *multiProtoFileModuleReadBucket[T, S]) GetFile(ctx context.Context, path string) (File, error) { |
| 794 | _, delegateIndex, err := m.getFileInfoAndDelegateIndex(ctx, "read", path) |
| 795 | if err != nil { |
| 796 | return nil, err |
| 797 | } |
| 798 | return m.delegates[delegateIndex].GetFile(ctx, path) |
| 799 | } |
| 800 | |
| 801 | func (m *multiProtoFileModuleReadBucket[T, S]) StatFileInfo(ctx context.Context, path string) (FileInfo, error) { |
| 802 | fileInfo, _, err := m.getFileInfoAndDelegateIndex(ctx, "stat", path) |
nothing calls this directly
no test coverage detected