Platform wraps a [ocispec.Platform] to implement the stringer interface.
| 33 | |
| 34 | // Platform wraps a [ocispec.Platform] to implement the stringer interface. |
| 35 | type Platform struct { |
| 36 | ocispec.Platform |
| 37 | } |
| 38 | |
| 39 | func (p Platform) String() string { |
| 40 | return platforms.FormatAll(p.Platform) |
nothing calls this directly
no outgoing calls
no test coverage detected