1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 09:34:05 +08:00
icebergs/base/tcp/tcp.go
2021-10-21 21:14:54 +08:00

12 lines
209 B
Go

package tcp
import (
ice "shylinux.com/x/icebergs"
)
const TCP = "tcp"
var Index = &ice.Context{Name: TCP, Help: "通信模块"}
func init() { ice.Index.Register(Index, nil, HOST, PORT, CLIENT, SERVER) }