Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 542 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 542 Bytes

Chat

This chat application demonstrates chat using gRPC and golang. It uses redis as a database. Generated code is uploaded for convenience.

Usage

Install Golang.

Install with dependencies:

go mod download github.com/nivista/chat

Start server:

go run server/server.go -port 8080

Start as many clients as you want:

go run client/client.go -server_addr localhost:8080 -username user123 -conversation a

Conversation should either be 'a', 'b', or 'c'. Type in the console to chat!