7 lines
70 B
Go
7 lines
70 B
Go
package telnet
|
|
|
|
|
|
type Reader interface {
|
|
Read([]byte) (int, error)
|
|
}
|