9 lines
93 B
Go
9 lines
93 B
Go
package client
|
|
|
|
import "net"
|
|
|
|
type Client struct {
|
|
Name string
|
|
Connection net.Conn
|
|
}
|