()
| 71 | } |
| 72 | |
| 73 | func (r *reference) String() string { |
| 74 | if r.Tag == "" { |
| 75 | return r.orasReference.String() + "@" + r.Digest |
| 76 | } |
| 77 | return r.orasReference.String() |
| 78 | } |
| 79 | |
| 80 | // IsOCI determines whether a URL is to be treated as an OCI URL |
| 81 | func IsOCI(url string) bool { |
no outgoing calls