NOTE(@andreynering): The lists in this file were copied from: https://github.com/golang/go/blob/master/src/go/build/syslist.go
(str string)
| 5 | // https://github.com/golang/go/blob/master/src/go/build/syslist.go |
| 6 | |
| 7 | func IsKnownOS(str string) bool { |
| 8 | _, known := knownOS[str] |
| 9 | return known |
| 10 | } |
| 11 | |
| 12 | func IsKnownArch(str string) bool { |
| 13 | _, known := knownArch[str] |
no outgoing calls
no test coverage detected
searching dependent graphs…