tcp-shaker/pipe_pool.go

7 lines
88 B
Go

package tcp
type pipePool interface {
getPipe() chan error
putBackPipe(chan error)
}