8 lines
134 B
Go
8 lines
134 B
Go
package main
|
|
|
|
func (r Read2) Read(p []byte) (n int, err error) {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
|
|
type Read2 struct{}
|