type File … // Read bytes from the file func (f *File) Read(p []byte) (n int, err error) { … } // Close the file func (f *File) Close() error { … }
type File … // Read bytes from the file func (f *File) Read(p []byte) (n int, err error) { … } // Close the file func (f *File) Close() error { … }