(ctx context.Context, spec blobcache.QueueBackend_Memory)
| 28 | } |
| 29 | |
| 30 | func (s *system) CreateQueue(ctx context.Context, spec blobcache.QueueBackend_Memory) (*memory.Queue, error) { |
| 31 | return s.queues.CreateQueue(ctx, spec) |
| 32 | } |
| 33 | |
| 34 | func (s *system) VolumeDestroy(ctx context.Context, vol backend.Volume) error { |
| 35 | return s.vols.VolumeDestroy(ctx, vol.(*localvol.Volume)) |
nothing calls this directly
no test coverage detected