8 lines
148 B
Go
8 lines
148 B
Go
package main
|
|
|
|
type WriterTest2 struct{}
|
|
|
|
func (w *WriterTest2) Write(p []byte) (n int, err error) {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|