An Opensource Instant Messaging System.
You can deploy it privately to enhance communication security.
development run
cd backend
go run main.go
Compile and run
cd backend
go mod init openim
go build -o openim main.go
./openim
Compile it into an executable file for a Linux server.
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o openim main.go
APIs