(tx *bolt.Tx, namespace string)
| 231 | } |
| 232 | |
| 233 | func createImagesBucket(tx *bolt.Tx, namespace string) (*bolt.Bucket, error) { |
| 234 | return createBucketIfNotExists(tx, imagesBucketPath(namespace)...) |
| 235 | } |
| 236 | |
| 237 | func getImagesBucket(tx *bolt.Tx, namespace string) *bolt.Bucket { |
| 238 | return getBucket(tx, imagesBucketPath(namespace)...) |
no test coverage detected
searching dependent graphs…