shelldoor/servers/client.go

14 lines
159 B
Go
Raw Normal View History

2024-09-25 22:56:40 +03:00
package servers
import "net"
type Client struct {
conn net.Conn
}
func NewClient(conn net.Conn) *Client {
ret := &Client{}
ret.conn = conn
return ret
}