(ctx context.Context, container string, object string)
| 87 | } |
| 88 | |
| 89 | func (s storage) delete(ctx context.Context, container string, object string) (err error) { |
| 90 | path := fsObjectsToPath(container, object) |
| 91 | if deletionForbidden(ctx, path) { |
| 92 | return nil |
| 93 | } |
| 94 | return fio.Delete(ctx, path) |
| 95 | } |
| 96 | |
| 97 | func (s storage) writeNotefile(ctx context.Context, notefile *Notefile, container string, object string) (err error) { |
| 98 | // Convert to JSON |
no test coverage detected