Client initial commit.

This commit is contained in:
2024-12-10 18:55:23 -05:00
commit ca681f08cd
20 changed files with 870 additions and 0 deletions

8
server/client/client.go Normal file
View File

@@ -0,0 +1,8 @@
package client
import "net"
type Client struct {
Name string
Connection net.Conn
}