NewImageStore returns a store backed by a bolt DB
(db *DB)
| 44 | |
| 45 | // NewImageStore returns a store backed by a bolt DB |
| 46 | func NewImageStore(db *DB) images.Store { |
| 47 | return &imageStore{db: db} |
| 48 | } |
| 49 | |
| 50 | func (s *imageStore) Get(ctx context.Context, name string) (images.Image, error) { |
| 51 | var image images.Image |
no outgoing calls
searching dependent graphs…