This package is the http/socket server for the chat of https://appointrip.com
With a correctly configured Go toolchain:
go install
For run the project, open a cmd with Go installed and run
go run main.go
See the package for read the doc
Build for ubuntu run
GOOS=linux GOARCH=amd64 go build -o messenger main.go
Build for macos run
GOOS=darwin GOARCH=amd64 go build -o messenger main.go
Build for window run
GOOS=windows GOARCH=amd64 go build -o messenger.exe main.go
This command create a binary file named 'messenger' or 'messenger.exe'