I have a question concerning the handling of go. The point is, that a compiled go file contains the runtime, i.e., the oss dependencies of the project should contain the runtime packages as well as they are distribution relevant.
When I look at the output of ORT, it basically reflects the dependencies referenced in the go.mod file. To my understanding, this does not include the runtime of Go, but only the additional dependencies. If I call 'go list -m all' I get an even longer list of modules.
Is this an issue or do I misunderstand something here?