(ctx context.Context, u *URI)
| 29 | } |
| 30 | |
| 31 | func (f *FileSystem) Get(ctx context.Context, u *URI) (Reader, error) { |
| 32 | r, err := pkgfs.Open(u.Filepath()) |
| 33 | return &fileSizer{r}, fileErr(err) |
| 34 | } |
| 35 | |
| 36 | func (f *FileSystem) Put(_ context.Context, u *URI) (io.WriteCloser, error) { |
| 37 | path := u.Filepath() |