(ctx context.Context, path string)
| 849 | } |
| 850 | |
| 851 | func (m *multiProtoFileModuleReadBucket[T, S]) getFastscanResultForPath(ctx context.Context, path string) (fastscan.Result, error) { |
| 852 | _, delegateIndex, err := m.getFileInfoAndDelegateIndex(ctx, "stat", path) |
| 853 | if err != nil { |
| 854 | return fastscan.Result{}, err |
| 855 | } |
| 856 | return m.delegates[delegateIndex].getFastscanResultForPath(ctx, path) |
| 857 | } |
| 858 | |
| 859 | func (m *multiProtoFileModuleReadBucket[T, S]) getFileInfoAndDelegateIndex( |
| 860 | ctx context.Context, |
nothing calls this directly
no test coverage detected