A brief description of what this project does and who it's for
## Enable dependency tracking
go mod init example/hello
## Run code
go run .
## Add module requirements
go mod tidy
## Module replace
go mod edit -replace example.com/greetings=../greetings
go mod tidy
## Compile to executable
go build
go install
## Run all tests from root project
go test ./...
After running go build
and go install
the executable file will generated in ~/go/bin
see: https://github.com/golang-standards/project-layout
- Getting started: https://go.dev/doc/tutorial/getting-started
- Go packages: https://pkg.go.dev/
- Goquery for web scraping: https://github.com/PuerkitoBio/goquery