(tx *bolt.Tx, namespace string)
| 243 | } |
| 244 | |
| 245 | func getContainersBucket(tx *bolt.Tx, namespace string) *bolt.Bucket { |
| 246 | return getBucket(tx, bucketKeyVersion, []byte(namespace), bucketKeyObjectContainers) |
| 247 | } |
| 248 | |
| 249 | func getContainerBucket(tx *bolt.Tx, namespace, id string) *bolt.Bucket { |
| 250 | return getBucket(tx, bucketKeyVersion, []byte(namespace), bucketKeyObjectContainers, []byte(id)) |