Compare commits

...

2 Commits

Author SHA1 Message Date
raul 55da7f8afc Fix README.md titles
Go audit / audit (push) Successful in 1m3s Details
2024-04-01 12:57:57 +02:00
raul 0f6e05477a Update go.mod
Go audit / audit (push) Successful in 1m2s Details
2024-04-01 12:52:34 +02:00
2 changed files with 5 additions and 4 deletions

View File

@ -2,10 +2,10 @@
Tiny IRC-like chat server built for compatibility with netcat and written in Go Tiny IRC-like chat server built for compatibility with netcat and written in Go
# # Usage ## Usage
# # # Starting the server ### Starting the server
./mini-chat server --port 1337 ./mini-chat server --port 1337
# # # Connecting to the server ### Connecting to the server
nc $SERVER_IP $SERVER_PORT nc $SERVER_IP $SERVER_PORT

3
go.mod
View File

@ -2,8 +2,9 @@ module mini-chat
go 1.22.1 go 1.22.1
require github.com/spf13/cobra v1.8.0
require ( require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/cobra v1.8.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/pflag v1.0.5 // indirect
) )