func os.ReadFile

9 uses

	os (current package)
		file.go#L665: 	return ReadFile(fullname)
		file.go#L714: func ReadFile(name string) ([]byte, error) {

	crypto/tls
		tls.go#L231: 	certPEMBlock, err := os.ReadFile(certFile)
		tls.go#L235: 	keyPEMBlock, err := os.ReadFile(keyFile)

	crypto/x509
		root_unix.go#L42: 		data, err := os.ReadFile(file)
		root_unix.go#L70: 			data, err := os.ReadFile(directory + "/" + fi.Name())

	github.com/gotd/td/session
		storage_file.go#L27: 	data, err := os.ReadFile(f.Path)

	golang.org/x/sys/cpu
		hwcap_linux.go#L42: 	buf, err := os.ReadFile(procAuxv)

	io/ioutil
		ioutil.go#L37: 	return os.ReadFile(filename)