mirror of
https://github.com/fumiama/WireGold.git
synced 2026-06-05 16:00:28 +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
|
|
}
|