Basic Go TLS client-server implementation.
Assuming you have Go installed:
- Open a terminal and navigate to the project directory:
cd path/to/go-tls-echo
- To run the server:
go run cmd/server/main.go
- Open another terminal, navigate to the same project directory, and run the client:
go run cmd/client/main.go
Make sure to run the server before the client.