()
| 21 | ) |
| 22 | |
| 23 | func Example() { |
| 24 | c := map[string][]byte{ |
| 25 | "/binary": []byte("binary contents"), |
| 26 | } |
| 27 | i, _ := crane.Image(c) |
| 28 | d, _ := i.Digest() |
| 29 | fmt.Println(d) |
| 30 | // Output: sha256:09fb0c6289cefaad8c74c7e5fd6758ad6906ab8f57f1350d9f4eb5a7df45ff8b |
| 31 | } |