mirror of
https://github.com/fumiama/WireGold.git
synced 2026-06-06 00:10:25 +08:00
9 lines
146 B
Go
9 lines
146 B
Go
package upper
|
|
|
|
import "io"
|
|
|
|
type Service interface {
|
|
Create(peer string, srcport uint16, destport uint16) (Service, error)
|
|
io.ReadWriteCloser
|
|
}
|