ribice / goch

Self hosted live chat server written in Go
https://www.ribice.ba/goch
MIT License
198 stars 30 forks source link

Go module support request #5

Closed chaz8080 closed 5 years ago

chaz8080 commented 5 years ago

With go mod support, you can:


To convert to go modules from Gopkg:

cd goch
go mod init
go get

Running go mod init will create a go.mod file. Running go get will generate your go.sum file.

With those, you can safely get rid of:

nealwashere commented 5 years ago

https://github.com/ribice/goch/pull/6

chaz8080 commented 5 years ago

thanks 👍