Files
networkzero/server/client/client.go

9 lines
93 B
Go
Raw Permalink Normal View History

2024-12-10 18:55:23 -05:00
package client
import "net"
type Client struct {
Name string
Connection net.Conn
}