sameerdhoot / wolweb

Web interface for sending Wake-on-lan (magic packet). An HTTP server built using GoLang and uses Bootstrap for UI.
GNU General Public License v3.0
297 stars 76 forks source link

Update golang version to 1.20 #19

Closed daniel1302 closed 1 year ago

daniel1302 commented 1 year ago

This PR allows building binaries with newer golang versions. We do not need to download any binary manually with a go get anymore. It was harder to build binaries on the newer go version when the project was designed for v1.14.

All versions of packages are locked within go.sum and we can build the binary with the following command:

go build ./... or we can also install it with go install ./...