Platform represents GOOS and GOARCH values
| 12 | |
| 13 | // Platform represents GOOS and GOARCH values |
| 14 | type Platform struct { |
| 15 | OS string |
| 16 | Arch string |
| 17 | } |
| 18 | |
| 19 | func (p *Platform) DeepCopy() *Platform { |
| 20 | if p == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected