Tiny IRC-like chat server written in Go
Go to file
raul 544369cb9f Fixed server crashing whenever a user disconnected
Instead of trying to let Cobra handle the possible errors produced in
client input through bufio.NewReader(conn), I'm handling them manually
by returning the function if there's an error detected, therefore
severing the goroutine and letting the main server run normally
2024-03-29 09:36:03 +01:00
cmd Fixed server crashing whenever a user disconnected 2024-03-29 09:36:03 +01:00
.gitignore Initial commit 2024-03-29 08:59:03 +01:00
LICENSE Initial commit 2024-03-29 08:59:03 +01:00
README.md Initial commit 2024-03-29 08:59:03 +01:00
go.mod Adding files to project 2024-03-29 09:04:20 +01:00
go.sum Adding files to project 2024-03-29 09:04:20 +01:00
main.go Adding files to project 2024-03-29 09:04:20 +01:00

README.md

mini-chat

Tiny IRC-like chat server I'm building in Go