(ctx context.Context, name string)
| 86 | // Store and interact with images |
| 87 | type Store interface { |
| 88 | Get(ctx context.Context, name string) (Image, error) |
| 89 | List(ctx context.Context, filters ...string) ([]Image, error) |
| 90 | Create(ctx context.Context, image Image) (Image, error) |
| 91 |
no outgoing calls